From 3f1bf6f9113ee9a2a3c819f8606a905ac30bcc8e Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 18 Dec 2020 08:10:08 -0700 Subject: [PATCH 01/27] Update .gitmodules and submodule pointer for fv3atm for code review and testing --- .gitmodules | 6 ++++-- FV3 | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 6e63f4576f..b9ec21b3f9 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,9 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-EMC/fv3atm - branch = develop + #url = https://github.com/NOAA-EMC/fv3atm + #branch = develop + url = https://github.com/climbfuji/fv3atm + branch = timestep_init_final [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS diff --git a/FV3 b/FV3 index f5a6d1a97e..3cdfa3fefd 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit f5a6d1a97e0a723b28b6b5a8f4252400296a7b9c +Subproject commit 3cdfa3fefda049d40406fb5b3d98211a7d6f874a From bc40ab9ba848ae6c3adeccaaa92b1852d9968eb6 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 30 Dec 2020 08:20:21 -0700 Subject: [PATCH 02/27] Update submodule pointer for fv3atm; skip-ci --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c249dfbdb8..9fc029bff3 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c249dfbdb824b1118fe2873f0809e228cf57c053 +Subproject commit 9fc029bff39f172b3438952ff0cbb8f4c94b4d6a From 440566a73254f93c585123c099e531002fb4f3d3 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 31 Dec 2020 10:22:48 -0700 Subject: [PATCH 03/27] Update .gitmodules and submodule pointer for fv3atm for code review and testing --- .gitmodules | 6 ++++-- FV3 | 2 +- tests/rt_stampede.conf | 13 ------------- 3 files changed, 5 insertions(+), 16 deletions(-) delete mode 100644 tests/rt_stampede.conf diff --git a/.gitmodules b/.gitmodules index 6e63f4576f..ade89a7dde 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,9 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-EMC/fv3atm - branch = develop + #url = https://github.com/NOAA-EMC/fv3atm + #branch = develop + url = https://github.com/climbfuji/fv3atm + branch = simd_update_20201231 [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS diff --git a/FV3 b/FV3 index 9c73d9672f..bcc016f452 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9c73d9672f671437cb5f5adbc4b414c97186a367 +Subproject commit bcc016f452c7d83d8cb17072728ab490c7b69337 diff --git a/tests/rt_stampede.conf b/tests/rt_stampede.conf deleted file mode 100644 index 3af8895955..0000000000 --- a/tests/rt_stampede.conf +++ /dev/null @@ -1,13 +0,0 @@ -####################################################################################################################################################################################### -# CCPP PROD tests # -####################################################################################################################################################################################### - -COMPILE | SUITES=FV3_GFS_2017 | standard | | fv3 | - -RUN | fv3_ccpp_control | standard | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | | fv3 | - -RUN | fv3_ccpp_gfdlmp | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_gwd | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_noahmp | standard | | fv3 | From 153637b480b5d5a02baf118b57801d6bcdc5fc9b Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 31 Dec 2020 11:13:42 -0700 Subject: [PATCH 04/27] Reduce SIMDMULTIARCH sets from four to two in cmake/Intel.cmake --- cmake/Intel.cmake | 4 ++-- tests/rt_ccpp_dev.conf | 12 ++++++------ tests/rt_gnu.conf | 28 ++++++++++++++-------------- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index d070ac2927..b39848964c 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -26,8 +26,8 @@ else() set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -march=core-avx2 -qno-opt-dynamic-align") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=core-avx2 -qno-opt-dynamic-align") elseif(SIMDMULTIARCH) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -axSSE4.2,AVX,CORE-AVX2,CORE-AVX512 -qno-opt-dynamic-align") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -axSSE4.2,AVX,CORE-AVX2,CORE-AVX512 -qno-opt-dynamic-align") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -axSSE4.2,CORE-AVX2 -qno-opt-dynamic-align") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -axSSE4.2,CORE-AVX2 -qno-opt-dynamic-align") else() set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -qno-opt-dynamic-align") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -qno-opt-dynamic-align") diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 60b9724f57..1f4b4d6fd3 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -1,6 +1,6 @@ -################################################################################################################################################################################# -# CCPP REPRO tests # -################################################################################################################################################################################# +########################################################################################################################################################################## +# CCPP REPRO tests # +########################################################################################################################################################################## COMPILE | REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | standard | | fv3 | @@ -38,9 +38,9 @@ RUN | fv3_ccpp_shinhong RUN | fv3_ccpp_ysu | standard | | fv3 | RUN | fv3_ccpp_ntiedtke | standard | | fv3 | -################################################################################################################################################################################# -# CCPP DEBUG tests # -################################################################################################################################################################################# +########################################################################################################################################################################## +# CCPP DEBUG tests # +########################################################################################################################################################################## COMPILE | DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v15_thompson | standard | | fv3 | diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 3d13d59cab..60184010db 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -1,6 +1,6 @@ -####################################################################################################################################################################################### -# CCPP PROD tests # -####################################################################################################################################################################################### +################################################################################################################################################################################ +# CCPP PROD tests # +################################################################################################################################################################################ COMPILE | SUITES=FV3_GFS_2017_gfdlmp | standard | | fv3 | RUN | fv3_ccpp_gfdlmp | standard | | fv3 | @@ -27,9 +27,9 @@ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson #RUN | fv3_ccpp_HAFS_v0_hwrf | standard | | fv3 | RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | standard | | fv3 | -####################################################################################################################################################################################### -# CCPP DEBUG tests # -####################################################################################################################################################################################### +################################################################################################################################################################################ +# CCPP DEBUG tests # +################################################################################################################################################################################ # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) COMPILE | 32BIT=Y DEBUG=Y | standard | | fv3 | @@ -56,14 +56,14 @@ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug #RUN | fv3_ccpp_HAFS_v0_hwrf_debug | standard | | fv3 | RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | standard | | fv3 | -####################################################################################################################################################################################### -# S2S tests -####################################################################################################################################################################################### +################################################################################################################################################################################ +# S2S tests # +################################################################################################################################################################################ -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | + hera.gnu | fv3 | +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | | fv3 | -####################################################################################################################################################################################### -# Data Atmosphere tests -####################################################################################################################################################################################### +################################################################################################################################################################################ +# Data Atmosphere tests # +################################################################################################################################################################################ -COMPILE | DATM=Y S2S=Y | standard | + hera.gnu | fv3 | +COMPILE | DATM=Y S2S=Y | standard | | fv3 | From 5e7648dffe26c412786c71d5c2827bd66daf6b6b Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 31 Dec 2020 11:14:50 -0700 Subject: [PATCH 05/27] First cleanup of regression test config tests/rt.conf --- tests/rt.conf | 54 ++++++++++++++++++++++++--------------------------- 1 file changed, 25 insertions(+), 29 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index 8b0f02b1b9..9262adae0d 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -16,11 +16,11 @@ RUN | fv3_ccpp_wrtGlatlon_netcdf RUN | fv3_ccpp_wrtGauss_nemsio | standard | | fv3 | RUN | fv3_ccpp_wrtGauss_nemsio_c192 | standard | | fv3 | RUN | fv3_ccpp_stochy | standard | | fv3 | -RUN | fv3_ccpp_ca | standard | + hera.intel orion.intel cheyenne.intel | fv3 | -RUN | fv3_ccpp_lndp | standard | + hera.intel | fv3 | +RUN | fv3_ccpp_ca | standard | | fv3 | +RUN | fv3_ccpp_lndp | standard | | fv3 | # temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it -RUN | fv3_ccpp_iau | standard | - gaea.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | - orion.intel | fv3 | +RUN | fv3_ccpp_iau | standard | | fv3 | +RUN | fv3_ccpp_lheatstrg | standard | | fv3 | # WW3 not working on Cheyenne in the past, need to check if it works now COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | + wcoss_dell_p3 hera.intel orion.intel | fv3 | @@ -61,33 +61,33 @@ COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmed #RUN | fv3_ccpp_csawmg3shoc127 | standard | | fv3 | RUN | fv3_ccpp_csawmg | standard | | fv3 | RUN | fv3_ccpp_satmedmf | standard | | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | - orion.intel | fv3 | +RUN | fv3_ccpp_satmedmfq | standard | | fv3 | COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | standard | | fv3 | RUN | fv3_ccpp_gfdlmp_32bit | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | - gaea.intel jet.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | | fv3 | RUN | fv3_ccpp_cpt | standard | | fv3 | RUN | fv3_ccpp_gsd | standard | | fv3 | -# Input data for RAP and HRRR runs only on hera (drag suite) -RUN | fv3_ccpp_rap | standard | + hera.intel | fv3 | -RUN | fv3_ccpp_hrrr | standard | + hera.intel | fv3 | +# These two tests crash with NaNs on jet.intel +RUN | fv3_ccpp_rap | standard | - jet.intel | fv3 | +RUN | fv3_ccpp_hrrr | standard | - jet.intel | fv3 | RUN | fv3_ccpp_thompson | standard | | fv3 | RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | # This test crashes with NaNs on jet.intel RUN | fv3_ccpp_rrfs_v1beta | standard | - jet.intel | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | - gaea.intel jet.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | + hera.intel orion.intel cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | - gaea.intel jet.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_restart | standard | - gaea.intel jet.intel | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | - gaea.intel jet.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | + hera.intel orion.intel cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | - gaea.intel jet.intel | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | | fv3 | +RUN | fv3_ccpp_gfs_v15p2 | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_restart | standard | | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_stochy | standard | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | | fv3 | -COMPILE | SUITES=FV3_GFS_v16_csawmg | standard | - cheyenne.intel gaea.intel jet.intel | fv3 | -# fv3_ccpp_gfsv16_csawmg and fv3_ccpp_gfsv16_csawmgt crash with a "bus error" on cheyenne.intel, turn off -RUN | fv3_ccpp_gfsv16_csawmg | standard | - cheyenne.intel gaea.intel jet.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | - cheyenne.intel gaea.intel jet.intel | fv3 | +COMPILE | SUITES=FV3_GFS_v16_csawmg | standard | | fv3 | +# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests +RUN | fv3_ccpp_gfsv16_csawmg | standard | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | standard | - cheyenne.intel | fv3 | COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16beta_flake | standard | | fv3 | RUN | fv3_ccpp_gocart_clm | standard | | fv3 | @@ -103,15 +103,11 @@ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson ############################################################################################################################################################################################## # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | DEBUG=Y | standard | + wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y | standard | + wcoss_cray | fv3 | -COMPILE | DEBUG=Y | standard | + hera.intel | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP DEBUG=Y | standard | + orion.intel | fv3 | -COMPILE | DEBUG=Y | standard | + cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | standard | + hera.intel orion.intel cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | - gaea.intel jet.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | + hera.intel orion.intel cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | - gaea.intel jet.intel | fv3 | +COMPILE | DEBUG=Y | standard | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | standard | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | | fv3 | COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | standard | | fv3 | RUN | fv3_ccpp_gsd_debug | standard | | fv3 | From e3bedfac64888fa0f4d1631ff49cc2bac57cef85 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 31 Dec 2020 12:12:16 -0700 Subject: [PATCH 06/27] tests/rt.sh: reduce number of build jobs on jet.intel from 10 to 5; skip-ci --- tests/rt.sh | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tests/rt.sh b/tests/rt.sh index 915d2376e6..4d9d80185a 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -521,6 +521,15 @@ fi if [[ $ECFLOW == true ]]; then + # Default maximum number of compile and run jobs + MAX_BUILDS=10 + MAX_JOBS=30 + + # Reduce maximum number of compile jobs on jet.intel because of licensing issues + if [[ $MACHINE_ID = jet.intel ]]; then + MAX_BUILDS=5 + fi + ECFLOW_RUN=${PATHRT}/ecflow_run ECFLOW_SUITE=regtest_$$ rm -rf ${ECFLOW_RUN} @@ -535,8 +544,8 @@ suite ${ECFLOW_SUITE} edit ECF_TRIES 1 label src_dir '${PATHTR}' label run_dir '${RUNDIR_ROOT}' - limit max_builds 10 - limit max_jobs 30 + limit max_builds ${MAX_BUILDS} + limit max_jobs ${MAX_JOBS} EOF if [[ $MACHINE_ID = wcoss ]]; then From 2d06ed5c949f3ed609c4d7e51927e7b4a5af103d Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 31 Dec 2020 12:51:08 -0700 Subject: [PATCH 07/27] Remove flags -f and -s from rt.sh, remove SET logic, remove corresponding column in all rt*conf files --- tests/rt.conf | 304 ++++++++++++++++++++--------------------- tests/rt.sh | 28 +--- tests/rt_35d.conf | 36 ++--- tests/rt_acorn.conf | 104 +++++++------- tests/rt_ccpp_dev.conf | 80 +++++------ tests/rt_gnu.conf | 102 +++++++------- 6 files changed, 320 insertions(+), 334 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index e6676a4e15..df493e30e2 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -1,165 +1,165 @@ -############################################################################################################################################################################################## -# PROD tests # -############################################################################################################################################################################################## - -COMPILE | SUITES=FV3_GFS_2017 | standard | | fv3 | - -RUN | fv3_ccpp_control | standard | | fv3 | -RUN | fv3_ccpp_decomp | standard | | | -RUN | fv3_ccpp_2threads | standard | | | -RUN | fv3_ccpp_restart | standard | | fv3 | -RUN | fv3_ccpp_read_inc | standard | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf_esmf | standard | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf | standard | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf_parallel | standard | | fv3 | -RUN | fv3_ccpp_wrtGlatlon_netcdf | standard | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio | standard | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c192 | standard | | fv3 | -RUN | fv3_ccpp_stochy | standard | | fv3 | -RUN | fv3_ccpp_ca | standard | | fv3 | -RUN | fv3_ccpp_lndp | standard | | fv3 | +################################################################################################################################################################################### +# PROD tests # +################################################################################################################################################################################### + +COMPILE | SUITES=FV3_GFS_2017 | | fv3 | + +RUN | fv3_ccpp_control | | fv3 | +RUN | fv3_ccpp_decomp | | | +RUN | fv3_ccpp_2threads | | | +RUN | fv3_ccpp_restart | | fv3 | +RUN | fv3_ccpp_read_inc | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | +RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | +RUN | fv3_ccpp_stochy | | fv3 | +RUN | fv3_ccpp_ca | | fv3 | +RUN | fv3_ccpp_lndp | | fv3 | # temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it -RUN | fv3_ccpp_iau | standard | | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | | fv3 | +RUN | fv3_ccpp_iau | | fv3 | +RUN | fv3_ccpp_lheatstrg | | fv3 | # WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | standard | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | + hera.intel orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | standard | | fv3 | -RUN | fv3_ccpp_multigases | standard | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | | fv3 | -RUN | fv3_ccpp_control_32bit | standard | | fv3 | -RUN | fv3_ccpp_stretched | standard | | fv3 | -RUN | fv3_ccpp_stretched_nest | standard | | fv3 | - -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | standard | | fv3 | -RUN | fv3_ccpp_regional_control | standard | | fv3 | -RUN | fv3_ccpp_regional_restart | standard | | fv3 | fv3_ccpp_regional_control -RUN | fv3_ccpp_regional_quilt | standard | | fv3 | -RUN | fv3_ccpp_regional_quilt_netcdf_parallel | standard | | fv3 | -#RUN | fv3_ccpp_regional_c768 | standard | wcoss_dell_p3 | fv3 | -#RUN | fv3_ccpp_regional_c768 | standard | hera.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | standard | gaea.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | standard | jet.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | standard | orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | | fv3 | -RUN | fv3_ccpp_control_debug | standard | | fv3 | -RUN | fv3_ccpp_stretched_nest_debug | standard | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | | fv3 | -RUN | fv3_ccpp_gfdlmp | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_gwd | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_noahmp | standard | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | | fv3 | -#RUN | fv3_ccpp_csawmgshoc | standard | | fv3 | -#RUN | fv3_ccpp_csawmg3shoc127 | standard | | fv3 | -RUN | fv3_ccpp_csawmg | standard | | fv3 | -RUN | fv3_ccpp_satmedmf | standard | | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | standard | | fv3 | -RUN | fv3_ccpp_gfdlmp_32bit | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | | fv3 | -RUN | fv3_ccpp_cpt | standard | | fv3 | -RUN | fv3_ccpp_gsd | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +RUN | fv3_ccpp_multigases | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | +RUN | fv3_ccpp_control_32bit | | fv3 | +RUN | fv3_ccpp_stretched | | fv3 | +RUN | fv3_ccpp_stretched_nest | | fv3 | + +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | +RUN | fv3_ccpp_regional_control | | fv3 | +RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control +RUN | fv3_ccpp_regional_quilt | | fv3 | +RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | +#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | +#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_control_debug | | fv3 | +RUN | fv3_ccpp_stretched_nest_debug | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +RUN | fv3_ccpp_gfdlmp | | fv3 | +RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | +RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | +#RUN | fv3_ccpp_csawmgshoc | | fv3 | +#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | +RUN | fv3_ccpp_csawmg | | fv3 | +RUN | fv3_ccpp_satmedmf | | fv3 | +RUN | fv3_ccpp_satmedmfq | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | +RUN | fv3_ccpp_cpt | | fv3 | +RUN | fv3_ccpp_gsd | | fv3 | # These two tests crash with NaNs on jet.intel -RUN | fv3_ccpp_rap | standard | - jet.intel | fv3 | -RUN | fv3_ccpp_hrrr | standard | - jet.intel | fv3 | -RUN | fv3_ccpp_thompson | standard | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | +RUN | fv3_ccpp_rap | - jet.intel | fv3 | +RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | +RUN | fv3_ccpp_thompson | | fv3 | +RUN | fv3_ccpp_thompson_no_aero | | fv3 | # This test crashes with NaNs on jet.intel -RUN | fv3_ccpp_rrfs_v1beta | standard | - jet.intel | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_restart | standard | | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v15p2 | | fv3 | +RUN | fv3_ccpp_gfs_v16beta | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_restart | | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_stochy | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | | fv3 | -COMPILE | SUITES=FV3_GFS_v16_csawmg | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | # fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests -RUN | fv3_ccpp_gfsv16_csawmg | standard | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16beta_flake | standard | | fv3 | -RUN | fv3_ccpp_gocart_clm | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_flake | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16beta_flake | | fv3 | +RUN | fv3_ccpp_gocart_clm | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_flake | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | standard | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | standard | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf | standard | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | standard | | fv3 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | -############################################################################################################################################################################################## -# DEBUG tests # -############################################################################################################################################################################################## +################################################################################################################################################################################### +# DEBUG tests # +################################################################################################################################################################################### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | DEBUG=Y | standard | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | | fv3 | - -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | standard | | fv3 | -RUN | fv3_ccpp_gsd_debug | standard | | fv3 | -RUN | fv3_ccpp_gsd_diag3d_debug | standard | | fv3 | -RUN | fv3_ccpp_thompson_debug | standard | | fv3 | -RUN | fv3_ccpp_thompson_no_aero_debug | standard | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta_debug | standard | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | standard | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | standard | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | standard | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | standard | | fv3 | - -####################################################################################################################################################################################### -# CPLD tests -####################################################################################################################################################################################### - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_control | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart | standard | - wcoss_cray gaea.intel jet.intel | | cpld_control -RUN | cpld_2threads | standard | - wcoss_cray gaea.intel jet.intel | | -RUN | cpld_decomp | standard | - wcoss_cray gaea.intel jet.intel | | -RUN | cpld_satmedmf | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_ca | standard | - wcoss_cray gaea.intel jet.intel | fv3 | - -RUN | cpld_control_c192 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_c192 | standard | - wcoss_cray gaea.intel jet.intel | | cpld_control_c192 -RUN | cpld_control_c384 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_controlfrac_c384 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmark | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmark | standard | - wcoss_cray gaea.intel jet.intel | | cpld_bmark - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmark_wave | standard | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debug | standard | - wcoss_cray gaea.intel jet.intel | fv3 | - -################################################################################################################################################################################ -# Data Atmosphere tests # -################################################################################################################################################################################ - -COMPILE | DATM=Y S2S=Y | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_control_cfsr | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_restart_cfsr | standard | - wcoss_cray gaea.intel jet.intel | | datm_control_cfsr -RUN | datm_control_gefs | standard | - wcoss_cray gaea.intel jet.intel | fv3 | - -RUN | datm_bulk_cfsr | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_bulk_gefs | standard | - wcoss_cray gaea.intel jet.intel | fv3 | - -RUN | datm_mx025_cfsr | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_mx025_gefs | standard | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DATM=Y S2S=Y DEBUG=Y | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_debug_cfsr | standard | - wcoss_cray gaea.intel jet.intel | fv3 | +COMPILE | DEBUG=Y | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | | fv3 | + +COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_gsd_debug | | fv3 | +RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | +RUN | fv3_ccpp_thompson_debug | | fv3 | +RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | +RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | + +################################################################################################################################################################################### +# CPLD tests # +################################################################################################################################################################################### + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_control | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart | - wcoss_cray gaea.intel jet.intel | | cpld_control +RUN | cpld_2threads | - wcoss_cray gaea.intel jet.intel | | +RUN | cpld_decomp | - wcoss_cray gaea.intel jet.intel | | +RUN | cpld_satmedmf | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_ca | - wcoss_cray gaea.intel jet.intel | fv3 | + +RUN | cpld_control_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c192 +RUN | cpld_control_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_controlfrac_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmark | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmark | - wcoss_cray gaea.intel jet.intel | | cpld_bmark + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | + +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | + +################################################################################################################################################################################### +# Data Atmosphere tests # +################################################################################################################################################################################### + +COMPILE | DATM=Y S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_control_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_restart_cfsr | - wcoss_cray gaea.intel jet.intel | | datm_control_cfsr +RUN | datm_control_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +RUN | datm_bulk_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_bulk_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +RUN | datm_mx025_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_mx025_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_debug_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 4d9d80185a..3c20d52790 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -362,22 +362,13 @@ TEST_35D=false TESTS_FILE='rt.conf' -SET_ID='standard' -while getopts ":cfsl:mn:kreh" opt; do +while getopts ":cl:mn:kreh" opt; do case $opt in c) CREATE_BASELINE=true - SET_ID=' ' - ;; - f) - SET_ID=' ' - ;; - s) - SET_ID='standard' ;; l) TESTS_FILE=$OPTARG - SET_ID=' ' ;; m) # redefine RTPWD to point to newly created baseline outputs @@ -386,7 +377,6 @@ while getopts ":cfsl:mn:kreh" opt; do n) SINGLE_NAME=$OPTARG TESTS_FILE='rt.conf.single' - SET_ID=' ' rm -f $TESTS_FILE ;; k) @@ -591,11 +581,9 @@ while read -r line || [ "$line" ]; do if [[ $line == COMPILE* ]] ; then MAKE_OPT=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') - SET=$( echo $line | cut -d'|' -f3) - MACHINES=$(echo $line | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//') - CB=$( echo $line | cut -d'|' -f5) + MACHINES=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') + CB=$( echo $line | cut -d'|' -f4) - [[ $SET_ID != ' ' && $SET != *${SET_ID}* ]] && continue [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue if [[ ${MACHINES} != '' ]]; then @@ -653,14 +641,12 @@ EOF elif [[ $line == RUN* ]] ; then TEST_NAME=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') - SET=$( echo $line | cut -d'|' -f3) - MACHINES=$( echo $line | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//') - CB=$( echo $line | cut -d'|' -f5) - DEP_RUN=$( echo $line | cut -d'|' -f6 | sed -e 's/^ *//' -e 's/ *$//') - DATE_35D=$( echo $line | cut -d'|' -f7 | sed -e 's/^ *//' -e 's/ *$//') + MACHINES=$( echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') + CB=$( echo $line | cut -d'|' -f4) + DEP_RUN=$( echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') + DATE_35D=$( echo $line | cut -d'|' -f6 | sed -e 's/^ *//' -e 's/ *$//') [[ -e "tests/$TEST_NAME" ]] || die "run test file tests/$TEST_NAME does not exist" - [[ $SET_ID != ' ' && $SET != *${SET_ID}* ]] && continue [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue if [[ ${MACHINES} != '' ]]; then diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 69b2a76b59..98bdf042ee 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -1,19 +1,19 @@ -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | | + hera.intel orion.intel | fv3 | | -RUN | cpld_bmark_35d | | | fv3 | | 2012010100 -RUN | cpld_bmark_35d | | | fv3 | | 2012040100 -RUN | cpld_bmark_35d | | | fv3 | | 2012070100 -RUN | cpld_bmark_35d | | | fv3 | | 2012100100 -RUN | cpld_bmark_35d | | | fv3 | | 2013010100 -RUN | cpld_bmark_35d | | | fv3 | | 2013040100 -RUN | cpld_bmark_35d | | | fv3 | | 2013070100 -RUN | cpld_bmark_35d | | | fv3 | | 2013100100 +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | + hera.intel orion.intel | fv3 | | +RUN | cpld_bmark_35d | | fv3 | | 2012010100 +RUN | cpld_bmark_35d | | fv3 | | 2012040100 +RUN | cpld_bmark_35d | | fv3 | | 2012070100 +RUN | cpld_bmark_35d | | fv3 | | 2012100100 +RUN | cpld_bmark_35d | | fv3 | | 2013010100 +RUN | cpld_bmark_35d | | fv3 | | 2013040100 +RUN | cpld_bmark_35d | | fv3 | | 2013070100 +RUN | cpld_bmark_35d | | fv3 | | 2013100100 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | | + hera.intel orion.intel | fv3 | | -RUN | cpld_bmark_wave_35d | | | fv3 | | 2012010100 -RUN | cpld_bmark_wave_35d | | | fv3 | | 2012040100 -RUN | cpld_bmark_wave_35d | | | fv3 | | 2012070100 -RUN | cpld_bmark_wave_35d | | | fv3 | | 2012100100 -RUN | cpld_bmark_wave_35d | | | fv3 | | 2013010100 -RUN | cpld_bmark_wave_35d | | | fv3 | | 2013040100 -RUN | cpld_bmark_wave_35d | | | fv3 | | 2013070100 -RUN | cpld_bmark_wave_35d | | | fv3 | | 2013100100 +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | + hera.intel orion.intel | fv3 | | +RUN | cpld_bmark_wave_35d | | fv3 | | 2012010100 +RUN | cpld_bmark_wave_35d | | fv3 | | 2012040100 +RUN | cpld_bmark_wave_35d | | fv3 | | 2012070100 +RUN | cpld_bmark_wave_35d | | fv3 | | 2012100100 +RUN | cpld_bmark_wave_35d | | fv3 | | 2013010100 +RUN | cpld_bmark_wave_35d | | fv3 | | 2013040100 +RUN | cpld_bmark_wave_35d | | fv3 | | 2013070100 +RUN | cpld_bmark_wave_35d | | fv3 | | 2013100100 diff --git a/tests/rt_acorn.conf b/tests/rt_acorn.conf index 05a3cab240..80b6b6c00b 100644 --- a/tests/rt_acorn.conf +++ b/tests/rt_acorn.conf @@ -1,52 +1,52 @@ -################################################################################################################################################################################ -# CCPP PROD tests # -################################################################################################################################################################################ - -COMPILE | SUITES=FV3_GFS_2017 | standard | | fv3 | - -RUN | fv3_ccpp_control | standard | | fv3 | -RUN | fv3_ccpp_decomp | standard | | | -RUN | fv3_ccpp_2threads | standard | | | -RUN | fv3_ccpp_restart | standard | | fv3 | -RUN | fv3_ccpp_read_inc | standard | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf_esmf | standard | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf | standard | | fv3 | -RUN | fv3_ccpp_wrtGlatlon_netcdf | standard | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio | standard | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c192 | standard | | fv3 | -RUN | fv3_ccpp_stochy | standard | | fv3 | -RUN | fv3_ccpp_iau | standard | | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | | fv3 | -RUN | fv3_ccpp_regional_control | standard | | fv3 | -RUN | fv3_ccpp_regional_restart | standard | | fv3 | fv3_ccpp_regional_control -RUN | fv3_ccpp_regional_quilt | standard | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | | fv3 | -RUN | fv3_ccpp_gfdlmp | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_gwd | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_noahmp | standard | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | | fv3 | -RUN | fv3_ccpp_csawmg | standard | | fv3 | -RUN | fv3_ccpp_satmedmf | standard | | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | standard | | fv3 | -RUN | fv3_ccpp_gfdlmp_32bit | standard | | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | | fv3 | -RUN | fv3_ccpp_cpt | standard | | fv3 | -RUN | fv3_ccpp_gsd | standard | | fv3 | -RUN | fv3_ccpp_thompson | standard | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | | fv3 | - -################################################################################################################################################################################ -# CPLD tests # -################################################################################################################################################################################ - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | | fv3 | -RUN | cpld_control | standard | | fv3 | -RUN | cpld_2threads | standard | | | -RUN | cpld_decomp | standard | | | +################################################################################################################################################################## +# CCPP PROD tests # +################################################################################################################################################################## + +COMPILE | SUITES=FV3_GFS_2017 | | fv3 | + +RUN | fv3_ccpp_control | | fv3 | +RUN | fv3_ccpp_decomp | | | +RUN | fv3_ccpp_2threads | | | +RUN | fv3_ccpp_restart | | fv3 | +RUN | fv3_ccpp_read_inc | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | +RUN | fv3_ccpp_stochy | | fv3 | +RUN | fv3_ccpp_iau | | fv3 | +RUN | fv3_ccpp_lheatstrg | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | | fv3 | +RUN | fv3_ccpp_regional_control | | fv3 | +RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control +RUN | fv3_ccpp_regional_quilt | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +RUN | fv3_ccpp_gfdlmp | | fv3 | +RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | +RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | +RUN | fv3_ccpp_csawmg | | fv3 | +RUN | fv3_ccpp_satmedmf | | fv3 | +RUN | fv3_ccpp_satmedmfq | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | +RUN | fv3_ccpp_cpt | | fv3 | +RUN | fv3_ccpp_gsd | | fv3 | +RUN | fv3_ccpp_thompson | | fv3 | +RUN | fv3_ccpp_thompson_no_aero | | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | | fv3 | + +################################################################################################################################################################## +# CPLD tests # +################################################################################################################################################################## + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | | fv3 | +RUN | cpld_control | | fv3 | +RUN | cpld_2threads | | | +RUN | cpld_decomp | | | diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 1f4b4d6fd3..ce08c70213 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -1,55 +1,55 @@ -########################################################################################################################################################################## -# CCPP REPRO tests # -########################################################################################################################################################################## +############################################################################################################################################################ +# CCPP REPRO tests # +############################################################################################################################################################ -COMPILE | REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | standard | | fv3 | +COMPILE | REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | | fv3 | -RUN | fv3_ccpp_thompson_mynn | standard | | fv3 | -RUN | fv3_ccpp_gf_thompson | standard | | fv3 | -RUN | fv3_ccpp_gsd | standard | | fv3 | -RUN | fv3_ccpp_gsd_coldstart | standard | | | -RUN | fv3_ccpp_gsd_warmstart | standard | | | fv3_ccpp_gsd_coldstart -RUN | fv3_ccpp_gsd_noah | standard | | fv3 | +RUN | fv3_ccpp_thompson_mynn | | fv3 | +RUN | fv3_ccpp_gf_thompson | | fv3 | +RUN | fv3_ccpp_gsd | | fv3 | +RUN | fv3_ccpp_gsd_coldstart | | | +RUN | fv3_ccpp_gsd_warmstart | | | fv3_ccpp_gsd_coldstart +RUN | fv3_ccpp_gsd_noah | | fv3 | -COMPILE | REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | standard | | fv3 | +COMPILE | REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | | fv3 | -RUN | fv3_ccpp_gsd_mynnsfc | standard | | fv3 | -RUN | fv3_ccpp_gsd_noah_mynnsfc | standard | | fv3 | +RUN | fv3_ccpp_gsd_mynnsfc | | fv3 | +RUN | fv3_ccpp_gsd_noah_mynnsfc | | fv3 | -COMPILE | REPRO=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | standard | | fv3 | +COMPILE | REPRO=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | fv3 | -RUN | fv3_ccpp_thompson | standard | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | -RUN | fv3_ccpp_gf | standard | | fv3 | -RUN | fv3_ccpp_mynn | standard | | fv3 | -RUN | fv3_ccpp_gsd_sar | standard | | fv3 | +RUN | fv3_ccpp_thompson | | fv3 | +RUN | fv3_ccpp_thompson_no_aero | | fv3 | +RUN | fv3_ccpp_gf | | fv3 | +RUN | fv3_ccpp_mynn | | fv3 | +RUN | fv3_ccpp_gsd_sar | | fv3 | -COMPILE | REPRO=Y SUITES=FV3_GSD_v0_drag_suite,FV3_GSD_v0_unified_ugwp_suite,FV3_RAP,FV3_HRRR | standard | | fv3 | -RUN | fv3_ccpp_gsd_drag_suite | standard | | fv3 | -RUN | fv3_ccpp_gsd_unified_ugwp | standard | | | -RUN | fv3_ccpp_gsd_drag_suite_unified_ugwp | standard | | | -RUN | fv3_ccpp_rap | standard | | fv3 | -RUN | fv3_ccpp_hrrr | standard | | fv3 | +COMPILE | REPRO=Y SUITES=FV3_GSD_v0_drag_suite,FV3_GSD_v0_unified_ugwp_suite,FV3_RAP,FV3_HRRR | | fv3 | +RUN | fv3_ccpp_gsd_drag_suite | | fv3 | +RUN | fv3_ccpp_gsd_unified_ugwp | | | +RUN | fv3_ccpp_gsd_drag_suite_unified_ugwp | | | +RUN | fv3_ccpp_rap | | fv3 | +RUN | fv3_ccpp_hrrr | | fv3 | # Compile without suite argument for CAPS physics -COMPILE | REPRO=Y | standard | | fv3 | +COMPILE | REPRO=Y | | fv3 | # Run tests -RUN | fv3_ccpp_shinhong | standard | | fv3 | -RUN | fv3_ccpp_ysu | standard | | fv3 | -RUN | fv3_ccpp_ntiedtke | standard | | fv3 | +RUN | fv3_ccpp_shinhong | | fv3 | +RUN | fv3_ccpp_ysu | | fv3 | +RUN | fv3_ccpp_ntiedtke | | fv3 | -########################################################################################################################################################################## -# CCPP DEBUG tests # -########################################################################################################################################################################## +############################################################################################################################################################ +# CCPP DEBUG tests # +############################################################################################################################################################ -COMPILE | DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v15_thompson | standard | | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v15_thompson | | fv3 | -RUN | fv3_ccpp_gsd_debug | standard | | fv3 | -RUN | fv3_ccpp_gsd_diag3d_debug | standard | | fv3 | -RUN | fv3_ccpp_gsd_mynnsfc_debug | standard | | fv3 | -RUN | fv3_ccpp_gsd_noah_mynnsfc_debug | standard | | fv3 | -RUN | fv3_ccpp_thompson_no_aero_debug | standard | | fv3 | +RUN | fv3_ccpp_gsd_debug | | fv3 | +RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | +RUN | fv3_ccpp_gsd_mynnsfc_debug | | fv3 | +RUN | fv3_ccpp_gsd_noah_mynnsfc_debug | | fv3 | +RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | -COMPILE | 32BIT=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | standard | | fv3 | +COMPILE | 32BIT=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | | fv3 | # Run tests -RUN | fv3_ccpp_gsd_sar_debug | standard | | fv3 | +RUN | fv3_ccpp_gsd_sar_debug | | fv3 | diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 60184010db..c07bcff094 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -1,69 +1,69 @@ -################################################################################################################################################################################ -# CCPP PROD tests # -################################################################################################################################################################################ +################################################################################################################################################################## +# CCPP PROD tests # +################################################################################################################################################################## -COMPILE | SUITES=FV3_GFS_2017_gfdlmp | standard | | fv3 | -RUN | fv3_ccpp_gfdlmp | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_2017_gfdlmp | | fv3 | +RUN | fv3_ccpp_gfdlmp | | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v16beta_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v16beta_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_restart | standard | | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_flake | standard | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | | fv3 | +RUN | fv3_ccpp_gfs_v15p2 | | fv3 | +RUN | fv3_ccpp_gfs_v16beta | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_restart | | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_stochy | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_flake | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | | fv3 | -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y | standard | | fv3 | +COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y | | fv3 | -RUN | fv3_ccpp_gsd | standard | | fv3 | -RUN | fv3_ccpp_thompson | standard | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | | fv3 | +RUN | fv3_ccpp_gsd | | fv3 | +RUN | fv3_ccpp_thompson | | fv3 | +RUN | fv3_ccpp_thompson_no_aero | | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | standard | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | standard | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf | standard | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | standard | | fv3 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | -################################################################################################################################################################################ -# CCPP DEBUG tests # -################################################################################################################################################################################ +################################################################################################################################################################## +# CCPP DEBUG tests # +################################################################################################################################################################## # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | 32BIT=Y DEBUG=Y | standard | | fv3 | -RUN | fv3_ccpp_control_debug | standard | | fv3 | +COMPILE | 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_control_debug | | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP DEBUG=Y | standard | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP DEBUG=Y | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | | fv3 | -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | standard | | fv3 | -RUN | fv3_ccpp_multigases | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +RUN | fv3_ccpp_multigases | | fv3 | -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | standard | | fv3 | +COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | # FIX ME - THESE ARE ALL CRASHING ON HERA WITH GNU 9.2.0 / CHEYENNE WITH GNU 9.1.0 -#RUN | fv3_ccpp_rrfs_v1beta_debug | standard | | fv3 | -#RUN | fv3_ccpp_gsd_debug | standard | | fv3 | -#RUN | fv3_ccpp_thompson_debug | standard | | fv3 | -#RUN | fv3_ccpp_thompson_no_aero_debug | standard | | fv3 | +#RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | +#RUN | fv3_ccpp_gsd_debug | | fv3 | +#RUN | fv3_ccpp_thompson_debug | | fv3 | +#RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | standard | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | standard | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | standard | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | standard | | fv3 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | -################################################################################################################################################################################ -# S2S tests # -################################################################################################################################################################################ +################################################################################################################################################################## +# S2S tests # +################################################################################################################################################################## -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | | fv3 | -################################################################################################################################################################################ -# Data Atmosphere tests # -################################################################################################################################################################################ +################################################################################################################################################################## +# Data Atmosphere tests # +################################################################################################################################################################## -COMPILE | DATM=Y S2S=Y | standard | | fv3 | +COMPILE | DATM=Y S2S=Y | | fv3 | From b6fa3e94169c36c7d3c669d37f58c8b3f5982937 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 31 Dec 2020 12:59:39 -0700 Subject: [PATCH 08/27] Update usage in rt.sh, add modulefiles/jet.intel/fv3_debug; skip-ci --- modulefiles/jet.intel/fv3_debug | 42 +++++++++++++++++++++++++++++++++ tests/rt.sh | 4 +--- 2 files changed, 43 insertions(+), 3 deletions(-) create mode 100644 modulefiles/jet.intel/fv3_debug diff --git a/modulefiles/jet.intel/fv3_debug b/modulefiles/jet.intel/fv3_debug new file mode 100644 index 0000000000..e2762bd904 --- /dev/null +++ b/modulefiles/jet.intel/fv3_debug @@ -0,0 +1,42 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on Jet/Intel" +} + +module-whatis "loads UFS Model prerequisites for Jet/Intel" + +module use /contrib/sutils/modulefiles +module load sutils + +module load cmake/3.16.1 +setenv CMAKE_C_COMPILER mpiicc +setenv CMAKE_CXX_COMPILER mpiicpc +setenv CMAKE_Fortran_COMPILER mpiifort +setenv CMAKE_Platform jet.intel + +module use /lfs4/HFIP/hfv3gfs/nwprod/hpc-stack/libs/modulefiles/stack + +module load hpc/1.1.0 +module load hpc-intel/18.0.5.274 +module load hpc-impi/2018.4.274 + +module load jasper/2.0.22 +module load zlib/1.2.11 +module load png/1.6.35 + +module load hdf5/1.10.6 +module load netcdf/4.7.4 +module load pio/2.5.1 +module load esmf/8_1_0_beta_snapshot_27 + +module load bacio/2.4.1 +module load crtm/2.3.0 +module load g2/3.4.1 +module load g2tmpl/1.9.1 +module load ip/3.3.3 +module load nemsio/2.5.2 +module load sp/2.3.3 +module load w3emc/2.7.3 +module load w3nco/2.4.1 +module load upp/10.0.0 diff --git a/tests/rt.sh b/tests/rt.sh index 3c20d52790..855654d60e 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -9,18 +9,16 @@ die() { echo "$@" >&2; exit 1; } usage() { set +x echo - echo "Usage: $0 -c | -e | -f | -h | -k | -l | -m | -n | -r | -s" + echo "Usage: $0 -c | -e | -h | -k | -l | -m | -n | -r " echo echo " -c create new baseline results" echo " -e use ecFlow workflow manager" - echo " -f run full suite of regression tests" echo " -h display this help" echo " -k keep run directory" echo " -l runs test specified in " echo " -m compare against new baseline results" echo " -n run single test " echo " -r use Rocoto workflow manager" - echo " -s run standard suite of regression tests" echo set -x exit 1 From 2f4c407791a3077d7871015c0880056099271288 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 4 Jan 2021 13:11:16 -0700 Subject: [PATCH 09/27] Update submodule pointer for fv3atm; skip-ci --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 4783ed160b..a86790ea3e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 4783ed160b2fccb0cacebb887b324e37c1dba519 +Subproject commit a86790ea3eb8b2ba969fb369faed36d7d0cf1956 From 8301422fcfe0e67bc98cc769d210330920d71f82 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 4 Jan 2021 14:41:23 -0700 Subject: [PATCH 10/27] Update submodule pointer for fv3atm; skip-ci --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index bcc016f452..54ee884272 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit bcc016f452c7d83d8cb17072728ab490c7b69337 +Subproject commit 54ee884272b0b3eb84836e6452faa69de941ff6b From 9a828b5780fb0ea8bf283d091512dd8363fbbea7 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 5 Jan 2021 10:09:24 -0700 Subject: [PATCH 11/27] Update submodule pointer for fv3atm; skip-ci --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 54ee884272..e2c78b8ced 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 54ee884272b0b3eb84836e6452faa69de941ff6b +Subproject commit e2c78b8cedf8c75036c69949cf1d17042685b847 From 992f08299da03edc5a1b1e96442b4f3681a74319 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 6 Jan 2021 08:38:04 -0700 Subject: [PATCH 12/27] Update regression test baseline date tag in tests/rt.sh --- tests/rt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/rt.sh b/tests/rt.sh index 94e0d9a052..5f59a58421 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -411,9 +411,9 @@ if [[ $TESTS_FILE =~ '35d' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210105/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210106/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210105} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210106} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210107} From 00d34e165e188341ba210468b6470165fe3c0c51 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 6 Jan 2021 09:24:24 -0700 Subject: [PATCH 13/27] Remvoe tests/rt_acorn.conf and run GFS v15p2 and GFS v16beta DEBUG tests on all platforms; skip-ci --- tests/rt.conf | 14 +++++------- tests/rt_acorn.conf | 52 --------------------------------------------- 2 files changed, 5 insertions(+), 61 deletions(-) delete mode 100644 tests/rt_acorn.conf diff --git a/tests/rt.conf b/tests/rt.conf index 2c33e7583e..b9fbd51782 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -103,15 +103,11 @@ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson ################################################################################################################################################################################### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | DEBUG=Y | + wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y | + wcoss_cray | fv3 | -COMPILE | DEBUG=Y | + hera.intel | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP DEBUG=Y | + orion.intel | fv3 | -COMPILE | DEBUG=Y | + cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | + hera.intel orion.intel cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | - gaea.intel jet.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | + hera.intel orion.intel cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | - gaea.intel jet.intel | fv3 | +COMPILE | DEBUG=Y | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | | fv3 | COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | RUN | fv3_ccpp_gsd_debug | | fv3 | diff --git a/tests/rt_acorn.conf b/tests/rt_acorn.conf deleted file mode 100644 index 80b6b6c00b..0000000000 --- a/tests/rt_acorn.conf +++ /dev/null @@ -1,52 +0,0 @@ -################################################################################################################################################################## -# CCPP PROD tests # -################################################################################################################################################################## - -COMPILE | SUITES=FV3_GFS_2017 | | fv3 | - -RUN | fv3_ccpp_control | | fv3 | -RUN | fv3_ccpp_decomp | | | -RUN | fv3_ccpp_2threads | | | -RUN | fv3_ccpp_restart | | fv3 | -RUN | fv3_ccpp_read_inc | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | -RUN | fv3_ccpp_stochy | | fv3 | -RUN | fv3_ccpp_iau | | fv3 | -RUN | fv3_ccpp_lheatstrg | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | | fv3 | -RUN | fv3_ccpp_regional_control | | fv3 | -RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control -RUN | fv3_ccpp_regional_quilt | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | -RUN | fv3_ccpp_gfdlmp | | fv3 | -RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | -RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | -RUN | fv3_ccpp_csawmg | | fv3 | -RUN | fv3_ccpp_satmedmf | | fv3 | -RUN | fv3_ccpp_satmedmfq | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | -RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | -RUN | fv3_ccpp_cpt | | fv3 | -RUN | fv3_ccpp_gsd | | fv3 | -RUN | fv3_ccpp_thompson | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | | fv3 | - -################################################################################################################################################################## -# CPLD tests # -################################################################################################################################################################## - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | | fv3 | -RUN | cpld_control | | fv3 | -RUN | cpld_2threads | | | -RUN | cpld_decomp | | | From 698d54abad33142d20a6cf96be8669680e872531 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 6 Jan 2021 16:48:55 -0700 Subject: [PATCH 14/27] Regression test logs for all tier-1 platforms --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 94 +- tests/RegressionTests_cheyenne.intel.log | 918 ++++++++----- tests/RegressionTests_gaea.intel.log | 1528 +++++++++++++++++++--- tests/RegressionTests_hera.gnu.log | 94 +- tests/RegressionTests_hera.intel.log | 416 +++--- tests/RegressionTests_jet.intel.log | 1402 ++++++++++++++++---- tests/RegressionTests_orion.intel.log | 1030 +++++++++------ tests/RegressionTests_wcoss_cray.log | 950 +++++++++++--- tests/RegressionTests_wcoss_dell_p3.log | 1370 +++++++++++++------ 10 files changed, 5758 insertions(+), 2046 deletions(-) diff --git a/FV3 b/FV3 index e2c78b8ced..c7b8afd51d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit e2c78b8cedf8c75036c69949cf1d17042685b847 +Subproject commit c7b8afd51dbfca946384e9c331c3617d0a32f953 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 9a7d72489c..2a9bf73d87 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Tue Jan 5 15:50:37 MST 2021 +Wed Jan 6 10:18:55 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -50,8 +50,8 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Test 001 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -118,8 +118,8 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Test 002 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfs_v16beta_prod Checking test 003 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16beta results .... Test 003 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfs_v16beta_restart_prod Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,8 +248,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... Test 004 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -316,8 +316,8 @@ Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... Test 005 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfs_v16beta_flake_prod Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,8 +384,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... Test 006 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -452,8 +452,8 @@ Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -520,8 +520,8 @@ Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -612,8 +612,8 @@ Checking test 009 fv3_ccpp_gsd results .... Test 009 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 010 fv3_ccpp_thompson results .... Test 010 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -902,8 +902,8 @@ Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_control_debug_prod Checking test 015 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 015 fv3_ccpp_control_debug results .... Test 015 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfs_v15p2_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1000,8 +1000,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... Test 016 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfs_v16beta_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1068,8 +1068,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... Test 017 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1136,8 +1136,8 @@ Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1204,8 +1204,8 @@ Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,8 +1278,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1346,8 +1346,8 @@ Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23991/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_23958/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1365,5 +1365,5 @@ Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 5 16:08:06 MST 2021 -Elapsed time: 00h:17m:30s. Have a nice day! +Wed Jan 6 10:36:57 MST 2021 +Elapsed time: 00h:18m:02s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 56754bc4ff..584d1a7685 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Tue Jan 5 15:52:27 MST 2021 +Wed Jan 6 10:34:23 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,8 +70,8 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -138,8 +138,8 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -274,8 +274,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -342,8 +342,8 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -438,8 +438,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -448,8 +448,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -630,8 +630,8 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,8 +698,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,9 +766,77 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_iau_prod -Checking test 014 fv3_ccpp_iau results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -831,12 +899,12 @@ Checking test 014 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_iau PASS +Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_lheatstrg_prod -Checking test 015 fv3_ccpp_lheatstrg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -879,12 +947,12 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_lheatstrg PASS +Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_multigases_prod -Checking test 016 fv3_ccpp_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_multigases_prod +Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -953,12 +1021,12 @@ Checking test 016 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 016 fv3_ccpp_multigases PASS +Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_control_32bit_prod -Checking test 017 fv3_ccpp_control_32bit results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_control_32bit_prod +Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1021,12 +1089,12 @@ Checking test 017 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_ccpp_control_32bit PASS +Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_stretched_prod -Checking test 018 fv3_ccpp_stretched results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_stretched_prod +Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1077,12 +1145,12 @@ Checking test 018 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_stretched PASS +Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_stretched_nest_prod -Checking test 019 fv3_ccpp_stretched_nest results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_stretched_nest_prod +Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1144,54 +1212,54 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 019 fv3_ccpp_stretched_nest PASS +Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_regional_control_prod -Checking test 020 fv3_ccpp_regional_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_regional_control_prod +Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 020 fv3_ccpp_regional_control PASS +Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_regional_restart_prod -Checking test 021 fv3_ccpp_regional_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_regional_restart_prod +Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -Test 021 fv3_ccpp_regional_restart PASS +Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_regional_quilt_prod -Checking test 022 fv3_ccpp_regional_quilt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_regional_quilt_prod +Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 022 fv3_ccpp_regional_quilt PASS +Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_control_debug_prod -Checking test 024 fv3_ccpp_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_control_debug_prod +Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1216,12 +1284,12 @@ Checking test 024 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 024 fv3_ccpp_control_debug PASS +Test 025 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_stretched_nest_debug_prod -Checking test 025 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_stretched_nest_debug_prod +Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -1236,12 +1304,12 @@ Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 025 fv3_ccpp_stretched_nest_debug PASS +Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfdlmp_prod +Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1284,12 +1352,12 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 026 fv3_ccpp_gfdlmp PASS +Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1332,12 +1400,12 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmprad_gwd PASS +Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1380,12 +1448,12 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmprad_noahmp PASS +Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_csawmg_prod -Checking test 029 fv3_ccpp_csawmg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_csawmg_prod +Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1428,12 +1496,12 @@ Checking test 029 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 029 fv3_ccpp_csawmg PASS +Test 030 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_satmedmf_prod +Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1476,12 +1544,12 @@ Checking test 030 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_satmedmf PASS +Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_satmedmfq_prod +Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1524,12 +1592,12 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_satmedmfq PASS +Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfdlmp_32bit_prod +Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1572,12 +1640,12 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmp_32bit PASS +Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1624,12 +1692,12 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_cpt_prod -Checking test 034 fv3_ccpp_cpt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_cpt_prod +Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1678,12 +1746,12 @@ Checking test 034 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_cpt PASS +Test 035 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gsd_prod -Checking test 035 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gsd_prod +Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +1838,148 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_gsd PASS +Test 036 fv3_ccpp_gsd PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_rap_prod +Checking test 037 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 037 fv3_ccpp_rap PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_hrrr_prod +Checking test 038 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 038 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_thompson_prod -Checking test 036 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_thompson_prod +Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1838,12 +2042,12 @@ Checking test 036 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_thompson PASS +Test 039 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_thompson_no_aero_prod -Checking test 037 fv3_ccpp_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_thompson_no_aero_prod +Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1906,12 +2110,12 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_thompson_no_aero PASS +Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_rrfs_v1beta_prod -Checking test 038 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_rrfs_v1beta_prod +Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1974,12 +2178,12 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_rrfs_v1beta PASS +Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfs_v15p2_prod -Checking test 039 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfs_v15p2_prod +Checking test 042 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2042,12 +2246,12 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 039 fv3_ccpp_gfs_v15p2 PASS +Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfs_v16beta_prod -Checking test 040 fv3_ccpp_gfs_v16beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfs_v16beta_prod +Checking test 043 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2122,12 +2326,12 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfs_v16beta PASS +Test 043 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2172,12 +2376,12 @@ Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gfs_v16beta_restart PASS +Test 044 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2240,12 +2444,12 @@ Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v16beta_stochy PASS +Test 045 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2308,12 +2512,12 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2376,12 +2580,12 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gocart_clm_prod -Checking test 045 fv3_ccpp_gocart_clm results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gocart_clm_prod +Checking test 048 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2424,12 +2628,12 @@ Checking test 045 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gocart_clm PASS +Test 048 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 049 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2492,12 +2696,12 @@ Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16beta_flake PASS +Test 049 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2560,12 +2764,12 @@ Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2578,12 +2782,12 @@ Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 049 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2646,12 +2850,12 @@ Checking test 049 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_debug PASS +Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 053 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2714,12 +2918,12 @@ Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16beta_debug PASS +Test 053 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2782,12 +2986,12 @@ Checking test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2850,12 +3054,12 @@ Checking test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gsd_debug_prod -Checking test 053 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gsd_debug_prod +Checking test 056 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2918,12 +3122,12 @@ Checking test 053 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gsd_debug PASS +Test 056 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2986,12 +3190,12 @@ Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 054 fv3_ccpp_gsd_diag3d_debug PASS +Test 057 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_thompson_debug_prod -Checking test 055 fv3_ccpp_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_thompson_debug_prod +Checking test 058 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3054,12 +3258,12 @@ Checking test 055 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_ccpp_thompson_debug PASS +Test 058 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3122,12 +3326,12 @@ Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_ccpp_thompson_no_aero_debug PASS +Test 059 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3190,12 +3394,12 @@ Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_rrfs_v1beta_debug PASS +Test 060 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3258,12 +3462,12 @@ Checking test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3276,12 +3480,12 @@ Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_control_prod -Checking test 060 cpld_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_control_prod +Checking test 063 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3329,12 +3533,12 @@ Checking test 060 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 060 cpld_control PASS +Test 063 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_restart_prod -Checking test 061 cpld_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_restart_prod +Checking test 064 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3382,12 +3586,12 @@ Checking test 061 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 061 cpld_restart PASS +Test 064 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_controlfrac_prod -Checking test 062 cpld_controlfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_controlfrac_prod +Checking test 065 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3435,12 +3639,12 @@ Checking test 062 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 062 cpld_controlfrac PASS +Test 065 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_restartfrac_prod -Checking test 063 cpld_restartfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_restartfrac_prod +Checking test 066 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3488,12 +3692,12 @@ Checking test 063 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 063 cpld_restartfrac PASS +Test 066 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_2threads_prod -Checking test 064 cpld_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_2threads_prod +Checking test 067 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3541,12 +3745,12 @@ Checking test 064 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 064 cpld_2threads PASS +Test 067 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_decomp_prod -Checking test 065 cpld_decomp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_decomp_prod +Checking test 068 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3594,12 +3798,12 @@ Checking test 065 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 065 cpld_decomp PASS +Test 068 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_satmedmf_prod -Checking test 066 cpld_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_satmedmf_prod +Checking test 069 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3647,12 +3851,12 @@ Checking test 066 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 066 cpld_satmedmf PASS +Test 069 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_ca_prod -Checking test 067 cpld_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_ca_prod +Checking test 070 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3700,12 +3904,12 @@ Checking test 067 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 067 cpld_ca PASS +Test 070 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_control_c192_prod -Checking test 068 cpld_control_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_control_c192_prod +Checking test 071 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3753,12 +3957,12 @@ Checking test 068 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 068 cpld_control_c192 PASS +Test 071 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_restart_c192_prod -Checking test 069 cpld_restart_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_restart_c192_prod +Checking test 072 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3806,12 +4010,12 @@ Checking test 069 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 069 cpld_restart_c192 PASS +Test 072 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_controlfrac_c192_prod -Checking test 070 cpld_controlfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_controlfrac_c192_prod +Checking test 073 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3859,12 +4063,12 @@ Checking test 070 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 070 cpld_controlfrac_c192 PASS +Test 073 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_restartfrac_c192_prod -Checking test 071 cpld_restartfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_restartfrac_c192_prod +Checking test 074 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3912,12 +4116,12 @@ Checking test 071 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 071 cpld_restartfrac_c192 PASS +Test 074 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_control_c384_prod -Checking test 072 cpld_control_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_control_c384_prod +Checking test 075 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3968,12 +4172,12 @@ Checking test 072 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_control_c384 PASS +Test 075 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_restart_c384_prod -Checking test 073 cpld_restart_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_restart_c384_prod +Checking test 076 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4024,12 +4228,12 @@ Checking test 073 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_restart_c384 PASS +Test 076 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_controlfrac_c384_prod -Checking test 074 cpld_controlfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_controlfrac_c384_prod +Checking test 077 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4080,12 +4284,12 @@ Checking test 074 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_controlfrac_c384 PASS +Test 077 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_restartfrac_c384_prod -Checking test 075 cpld_restartfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_restartfrac_c384_prod +Checking test 078 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4136,12 +4340,12 @@ Checking test 075 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_restartfrac_c384 PASS +Test 078 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_bmark_prod -Checking test 076 cpld_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_bmark_prod +Checking test 079 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4192,12 +4396,12 @@ Checking test 076 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 076 cpld_bmark PASS +Test 079 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_restart_bmark_prod -Checking test 077 cpld_restart_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_restart_bmark_prod +Checking test 080 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4248,12 +4452,12 @@ Checking test 077 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 077 cpld_restart_bmark PASS +Test 080 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_bmarkfrac_prod -Checking test 078 cpld_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_bmarkfrac_prod +Checking test 081 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4304,12 +4508,12 @@ Checking test 078 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 078 cpld_bmarkfrac PASS +Test 081 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_restart_bmarkfrac_prod -Checking test 079 cpld_restart_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_restart_bmarkfrac_prod +Checking test 082 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4360,12 +4564,12 @@ Checking test 079 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 079 cpld_restart_bmarkfrac PASS +Test 082 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_bmarkfrac_v16_prod -Checking test 080 cpld_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_bmarkfrac_v16_prod +Checking test 083 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4416,12 +4620,12 @@ Checking test 080 cpld_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 080 cpld_bmarkfrac_v16 PASS +Test 083 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_restart_bmarkfrac_v16_prod -Checking test 081 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_restart_bmarkfrac_v16_prod +Checking test 084 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4472,12 +4676,12 @@ Checking test 081 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 081 cpld_restart_bmarkfrac_v16 PASS +Test 084 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_bmark_wave_prod -Checking test 082 cpld_bmark_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_bmark_wave_prod +Checking test 085 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4531,12 +4735,12 @@ Checking test 082 cpld_bmark_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 082 cpld_bmark_wave PASS +Test 085 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_bmarkfrac_wave_prod -Checking test 083 cpld_bmarkfrac_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_bmarkfrac_wave_prod +Checking test 086 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4590,12 +4794,12 @@ Checking test 083 cpld_bmarkfrac_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 083 cpld_bmarkfrac_wave PASS +Test 086 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_bmarkfrac_wave_v16_prod -Checking test 084 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_bmarkfrac_wave_v16_prod +Checking test 087 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4649,12 +4853,12 @@ Checking test 084 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 084 cpld_bmarkfrac_wave_v16 PASS +Test 087 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_debug_prod -Checking test 085 cpld_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_debug_prod +Checking test 088 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4702,12 +4906,12 @@ Checking test 085 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 085 cpld_debug PASS +Test 088 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/cpld_debugfrac_prod -Checking test 086 cpld_debugfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/cpld_debugfrac_prod +Checking test 089 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4755,87 +4959,87 @@ Checking test 086 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 086 cpld_debugfrac PASS +Test 089 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/datm_control_cfsr -Checking test 087 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/datm_control_cfsr +Checking test 090 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 087 datm_control_cfsr PASS +Test 090 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/datm_restart_cfsr -Checking test 088 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/datm_restart_cfsr +Checking test 091 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 088 datm_restart_cfsr PASS +Test 091 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/datm_control_gefs -Checking test 089 datm_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/datm_control_gefs +Checking test 092 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 089 datm_control_gefs PASS +Test 092 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/datm_bulk_cfsr -Checking test 090 datm_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/datm_bulk_cfsr +Checking test 093 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 090 datm_bulk_cfsr PASS +Test 093 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/datm_bulk_gefs -Checking test 091 datm_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/datm_bulk_gefs +Checking test 094 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 091 datm_bulk_gefs PASS +Test 094 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/datm_mx025_cfsr -Checking test 092 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/datm_mx025_cfsr +Checking test 095 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 092 datm_mx025_cfsr PASS +Test 095 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/datm_mx025_gefs -Checking test 093 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/datm_mx025_gefs +Checking test 096 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 093 datm_mx025_gefs PASS +Test 096 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_60218/datm_debug_cfsr -Checking test 094 datm_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/datm_debug_cfsr +Checking test 097 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 094 datm_debug_cfsr PASS +Test 097 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 5 17:08:05 MST 2021 -Elapsed time: 01h:15m:39s. Have a nice day! +Wed Jan 6 11:50:40 MST 2021 +Elapsed time: 01h:16m:17s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 6363d7a789..e824f4cf02 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Tue Jan 5 17:16:23 EST 2021 +Wed Jan 6 16:07:10 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,8 +70,8 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -138,8 +138,8 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -274,8 +274,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -342,8 +342,8 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -438,8 +438,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -630,8 +630,8 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,9 +698,213 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_lheatstrg_prod -Checking test 013 fv3_ccpp_lheatstrg results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_ca_prod +Checking test 013 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 013 fv3_ccpp_ca PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 015 fv3_ccpp_iau PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -743,12 +947,12 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_lheatstrg PASS +Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_multigases_prod -Checking test 014 fv3_ccpp_multigases results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_multigases_prod +Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -817,12 +1021,12 @@ Checking test 014 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 014 fv3_ccpp_multigases PASS +Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_control_32bit_prod -Checking test 015 fv3_ccpp_control_32bit results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_control_32bit_prod +Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -885,12 +1089,12 @@ Checking test 015 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_control_32bit PASS +Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_stretched_prod -Checking test 016 fv3_ccpp_stretched results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_stretched_prod +Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -941,12 +1145,12 @@ Checking test 016 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_stretched PASS +Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_stretched_nest_prod -Checking test 017 fv3_ccpp_stretched_nest results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_stretched_nest_prod +Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1008,54 +1212,54 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 017 fv3_ccpp_stretched_nest PASS +Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_regional_control_prod -Checking test 018 fv3_ccpp_regional_control results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_regional_control_prod +Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 018 fv3_ccpp_regional_control PASS +Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_regional_restart_prod -Checking test 019 fv3_ccpp_regional_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_regional_restart_prod +Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -Test 019 fv3_ccpp_regional_restart PASS +Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_regional_quilt_prod -Checking test 020 fv3_ccpp_regional_quilt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_regional_quilt_prod +Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 020 fv3_ccpp_regional_quilt PASS +Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK -Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_control_debug_prod -Checking test 022 fv3_ccpp_control_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_control_debug_prod +Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1080,12 +1284,12 @@ Checking test 022 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 022 fv3_ccpp_control_debug PASS +Test 025 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_stretched_nest_debug_prod -Checking test 023 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_stretched_nest_debug_prod +Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -1100,12 +1304,12 @@ Checking test 023 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 023 fv3_ccpp_stretched_nest_debug PASS +Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_gfdlmp_prod -Checking test 024 fv3_ccpp_gfdlmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfdlmp_prod +Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1148,12 +1352,12 @@ Checking test 024 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 024 fv3_ccpp_gfdlmp PASS +Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1196,12 +1400,12 @@ Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 025 fv3_ccpp_gfdlmprad_gwd PASS +Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1244,12 +1448,12 @@ Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 026 fv3_ccpp_gfdlmprad_noahmp PASS +Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_csawmg_prod -Checking test 027 fv3_ccpp_csawmg results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_csawmg_prod +Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1292,12 +1496,12 @@ Checking test 027 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 027 fv3_ccpp_csawmg PASS +Test 030 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_satmedmf_prod -Checking test 028 fv3_ccpp_satmedmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_satmedmf_prod +Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1340,12 +1544,12 @@ Checking test 028 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 028 fv3_ccpp_satmedmf PASS +Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_satmedmfq_prod -Checking test 029 fv3_ccpp_satmedmfq results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_satmedmfq_prod +Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1388,12 +1592,60 @@ Checking test 029 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 029 fv3_ccpp_satmedmfq PASS +Test 032 fv3_ccpp_satmedmfq PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfdlmp_32bit_prod +Checking test 033 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_gfdlmp_32bit_prod -Checking test 030 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1404,6 +1656,10 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1436,12 +1692,12 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp_32bit PASS +Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_cpt_prod -Checking test 031 fv3_ccpp_cpt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_cpt_prod +Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1490,12 +1746,12 @@ Checking test 031 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_cpt PASS +Test 035 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_gsd_prod -Checking test 032 fv3_ccpp_gsd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gsd_prod +Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1582,12 +1838,12 @@ Checking test 032 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_gsd PASS +Test 036 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_thompson_prod -Checking test 033 fv3_ccpp_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_rap_prod +Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1650,12 +1906,12 @@ Checking test 033 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_thompson PASS +Test 037 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_thompson_no_aero_prod -Checking test 034 fv3_ccpp_thompson_no_aero results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_hrrr_prod +Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1718,12 +1974,12 @@ Checking test 034 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_thompson_no_aero PASS +Test 038 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_rrfs_v1beta_prod -Checking test 035 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_thompson_prod +Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1786,35 +2042,669 @@ Checking test 035 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_rrfs_v1beta PASS +Test 039 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_gocart_clm_prod -Checking test 036 fv3_ccpp_gocart_clm results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_thompson_no_aero_prod +Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 040 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_rrfs_v1beta_prod +Checking test 041 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 041 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfs_v15p2_prod +Checking test 042 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 042 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfs_v16beta_prod +Checking test 043 fv3_ccpp_gfs_v16beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 043 fv3_ccpp_gfs_v16beta PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 044 fv3_ccpp_gfs_v16beta_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 045 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfsv16_csawmg_prod +Checking test 048 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 048 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 049 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gocart_clm_prod +Checking test 050 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/fv_tracer.res.tile2.nc .........OK @@ -1834,12 +2724,12 @@ Checking test 036 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gocart_clm PASS +Test 050 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 051 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1902,12 +2792,12 @@ Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfs_v16beta_flake PASS +Test 051 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1970,12 +2860,12 @@ Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -1988,12 +2878,284 @@ Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 054 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 054 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 055 fv3_ccpp_gfs_v16beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 055 fv3_ccpp_gfs_v16beta_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_gsd_debug_prod -Checking test 040 fv3_ccpp_gsd_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gsd_debug_prod +Checking test 058 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2056,12 +3218,12 @@ Checking test 040 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_gsd_debug PASS +Test 058 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2124,12 +3286,12 @@ Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_gsd_diag3d_debug PASS +Test 059 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_thompson_debug_prod -Checking test 042 fv3_ccpp_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_thompson_debug_prod +Checking test 060 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2192,12 +3354,12 @@ Checking test 042 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson_debug PASS +Test 060 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2260,12 +3422,12 @@ Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero_debug PASS +Test 061 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2328,12 +3490,12 @@ Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta_debug PASS +Test 062 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2396,12 +3558,12 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210105/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13284/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2414,9 +3576,9 @@ Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 5 17:53:51 EST 2021 -Elapsed time: 00h:37m:29s. Have a nice day! +Wed Jan 6 16:42:58 EST 2021 +Elapsed time: 00h:35m:50s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 896fa2a7ed..b49ab210c6 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Jan 6 12:04:41 UTC 2021 +Wed Jan 6 16:39:25 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -50,8 +50,8 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Test 001 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -118,8 +118,8 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Test 002 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfs_v16beta_prod Checking test 003 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16beta results .... Test 003 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfs_v16beta_restart_prod Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,8 +248,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... Test 004 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -316,8 +316,8 @@ Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... Test 005 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfs_v16beta_flake_prod Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,8 +384,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... Test 006 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -452,8 +452,8 @@ Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -520,8 +520,8 @@ Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -612,8 +612,8 @@ Checking test 009 fv3_ccpp_gsd results .... Test 009 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 010 fv3_ccpp_thompson results .... Test 010 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -902,8 +902,8 @@ Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_control_debug_prod Checking test 015 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 015 fv3_ccpp_control_debug results .... Test 015 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfs_v15p2_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1000,8 +1000,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... Test 016 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfs_v16beta_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1068,8 +1068,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... Test 017 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1136,8 +1136,8 @@ Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1204,8 +1204,8 @@ Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,8 +1278,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1346,8 +1346,8 @@ Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_135399/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_150851/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1365,5 +1365,5 @@ Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 6 12:27:58 UTC 2021 -Elapsed time: 00h:23m:18s. Have a nice day! +Wed Jan 6 17:27:38 UTC 2021 +Elapsed time: 00h:48m:14s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 4fbd7f60f6..0d10c21220 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Jan 6 11:02:33 UTC 2021 +Wed Jan 6 16:38:30 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,8 +70,8 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -138,8 +138,8 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -274,8 +274,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -342,8 +342,8 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -438,8 +438,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -447,7 +447,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -630,8 +630,8 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,8 +698,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -950,8 +950,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -999,8 +999,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1048,8 +1048,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1097,8 +1097,8 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1239,8 +1239,8 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1295,8 +1295,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1362,8 +1362,8 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1373,8 +1373,8 @@ Checking test 024 fv3_ccpp_regional_control results .... Test 024 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1382,8 +1382,8 @@ Checking test 025 fv3_ccpp_regional_restart results .... Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1393,8 +1393,8 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1404,8 +1404,8 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1434,8 +1434,8 @@ Checking test 028 fv3_ccpp_control_debug results .... Test 028 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_stretched_nest_debug_prod Checking test 029 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1454,8 +1454,8 @@ Checking test 029 fv3_ccpp_stretched_nest_debug results .... Test 029 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1502,8 +1502,8 @@ Checking test 030 fv3_ccpp_gfdlmp results .... Test 030 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfdlmprad_gwd_prod Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1550,8 +1550,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Test 031 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1598,8 +1598,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Test 032 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1646,8 +1646,8 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1694,8 +1694,8 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1742,8 +1742,8 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfdlmp_32bit_prod Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1790,8 +1790,8 @@ Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Test 036 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,8 +1842,8 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1896,8 +1896,8 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1988,8 +1988,8 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2056,8 +2056,8 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2124,8 +2124,8 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2192,8 +2192,8 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_thompson_no_aero_prod Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2260,8 +2260,8 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... Test 043 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_rrfs_v1beta_prod Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,8 +2328,8 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Test 044 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfs_v15p2_prod Checking test 045 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2396,8 +2396,8 @@ Checking test 045 fv3_ccpp_gfs_v15p2 results .... Test 045 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfs_v16beta_prod Checking test 046 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2476,8 +2476,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta results .... Test 046 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfs_v16beta_restart_prod Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2526,8 +2526,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... Test 047 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2594,8 +2594,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... Test 048 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2662,8 +2662,8 @@ Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2730,8 +2730,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfsv16_csawmg_prod Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2778,8 +2778,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfsv16_csawmgt_prod Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2826,8 +2826,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gocart_clm_prod Checking test 053 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2874,8 +2874,8 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfs_v16beta_flake_prod Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2942,8 +2942,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... Test 054 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3010,8 +3010,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3028,8 +3028,8 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfs_v15p2_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3096,8 +3096,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfs_v16beta_debug_prod Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3164,8 +3164,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... Test 058 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3232,8 +3232,8 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3300,8 +3300,8 @@ Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gsd_debug_prod Checking test 061 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3368,8 +3368,8 @@ Checking test 061 fv3_ccpp_gsd_debug results .... Test 061 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gsd_diag3d_debug_prod Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3436,8 +3436,8 @@ Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Test 062 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_thompson_debug_prod Checking test 063 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3504,8 +3504,8 @@ Checking test 063 fv3_ccpp_thompson_debug results .... Test 063 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_thompson_no_aero_debug_prod Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3572,8 +3572,8 @@ Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Test 064 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3640,8 +3640,8 @@ Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Test 065 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3708,8 +3708,8 @@ Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3726,8 +3726,8 @@ Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3779,8 +3779,8 @@ Checking test 068 cpld_control results .... Test 068 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3832,8 +3832,8 @@ Checking test 069 cpld_restart results .... Test 069 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_controlfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3885,8 +3885,8 @@ Checking test 070 cpld_controlfrac results .... Test 070 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_restartfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3938,8 +3938,8 @@ Checking test 071 cpld_restartfrac results .... Test 071 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3991,8 +3991,8 @@ Checking test 072 cpld_2threads results .... Test 072 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4044,8 +4044,8 @@ Checking test 073 cpld_decomp results .... Test 073 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4097,8 +4097,8 @@ Checking test 074 cpld_satmedmf results .... Test 074 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4150,8 +4150,8 @@ Checking test 075 cpld_ca results .... Test 075 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4203,8 +4203,8 @@ Checking test 076 cpld_control_c192 results .... Test 076 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_restart_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4256,8 +4256,8 @@ Checking test 077 cpld_restart_c192 results .... Test 077 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_controlfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4309,8 +4309,8 @@ Checking test 078 cpld_controlfrac_c192 results .... Test 078 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_restartfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4362,8 +4362,8 @@ Checking test 079 cpld_restartfrac_c192 results .... Test 079 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4418,8 +4418,8 @@ Checking test 080 cpld_control_c384 results .... Test 080 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_restart_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4474,8 +4474,8 @@ Checking test 081 cpld_restart_c384 results .... Test 081 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4530,8 +4530,8 @@ Checking test 082 cpld_controlfrac_c384 results .... Test 082 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_restartfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4586,8 +4586,8 @@ Checking test 083 cpld_restartfrac_c384 results .... Test 083 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4642,8 +4642,8 @@ Checking test 084 cpld_bmark results .... Test 084 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_restart_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4698,8 +4698,8 @@ Checking test 085 cpld_restart_bmark results .... Test 085 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4754,8 +4754,8 @@ Checking test 086 cpld_bmarkfrac results .... Test 086 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_restart_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4810,8 +4810,8 @@ Checking test 087 cpld_restart_bmarkfrac results .... Test 087 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4866,8 +4866,8 @@ Checking test 088 cpld_bmarkfrac_v16 results .... Test 088 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_restart_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4922,8 +4922,8 @@ Checking test 089 cpld_restart_bmarkfrac_v16 results .... Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4981,8 +4981,8 @@ Checking test 090 cpld_bmark_wave results .... Test 090 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_bmarkfrac_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5040,8 +5040,8 @@ Checking test 091 cpld_bmarkfrac_wave results .... Test 091 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_bmarkfrac_wave_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5099,8 +5099,8 @@ Checking test 092 cpld_bmarkfrac_wave_v16 results .... Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5152,8 +5152,8 @@ Checking test 093 cpld_debug results .... Test 093 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/cpld_debugfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5205,8 +5205,8 @@ Checking test 094 cpld_debugfrac results .... Test 094 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/datm_control_cfsr Checking test 095 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5214,8 +5214,8 @@ Checking test 095 datm_control_cfsr results .... Test 095 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/datm_restart_cfsr Checking test 096 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5223,8 +5223,8 @@ Checking test 096 datm_restart_cfsr results .... Test 096 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/datm_control_gefs Checking test 097 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5232,8 +5232,8 @@ Checking test 097 datm_control_gefs results .... Test 097 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/datm_bulk_cfsr Checking test 098 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5241,8 +5241,8 @@ Checking test 098 datm_bulk_cfsr results .... Test 098 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/datm_bulk_gefs Checking test 099 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5250,8 +5250,8 @@ Checking test 099 datm_bulk_gefs results .... Test 099 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5262,8 +5262,8 @@ Checking test 100 datm_mx025_cfsr results .... Test 100 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5274,8 +5274,8 @@ Checking test 101 datm_mx025_gefs results .... Test 101 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_168855/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/datm_debug_cfsr Checking test 102 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5284,5 +5284,5 @@ Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 6 12:02:42 UTC 2021 -Elapsed time: 01h:00m:11s. Have a nice day! +Wed Jan 6 18:05:46 UTC 2021 +Elapsed time: 01h:27m:17s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 1845709f95..cbd6d628b2 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Jan 6 00:16:23 GMT 2021 +Wed Jan 6 22:03:47 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,76 +70,76 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_decomp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK + Comparing phyf024.tile1.nc ............ALT CHECK......OK + Comparing phyf024.tile2.nc ............ALT CHECK......OK + Comparing phyf024.tile3.nc ............ALT CHECK......OK + Comparing phyf024.tile4.nc ............ALT CHECK......OK + Comparing phyf024.tile5.nc ............ALT CHECK......OK + Comparing phyf024.tile6.nc ............ALT CHECK......OK Comparing dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK Comparing dynf000.tile4.nc .........OK Comparing dynf000.tile5.nc .........OK Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK + Comparing dynf024.tile1.nc ............ALT CHECK......OK + Comparing dynf024.tile2.nc ............ALT CHECK......OK + Comparing dynf024.tile3.nc ............ALT CHECK......OK + Comparing dynf024.tile4.nc ............ALT CHECK......OK + Comparing dynf024.tile5.nc ............ALT CHECK......OK + Comparing dynf024.tile6.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/sfc_data.tile6.nc ............ALT CHECK......OK Test 002 fv3_ccpp_decomp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -274,8 +274,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -342,8 +342,8 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -438,8 +438,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -448,7 +448,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -630,8 +630,8 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,9 +698,145 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_ca_prod +Checking test 013 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 013 fv3_ccpp_ca PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -763,12 +899,12 @@ Checking test 013 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_iau PASS +Test 015 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_lheatstrg_prod -Checking test 014 fv3_ccpp_lheatstrg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -811,12 +947,12 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lheatstrg PASS +Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_multigases_prod -Checking test 015 fv3_ccpp_multigases results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_multigases_prod +Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -885,12 +1021,12 @@ Checking test 015 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 015 fv3_ccpp_multigases PASS +Test 017 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_control_32bit_prod -Checking test 016 fv3_ccpp_control_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_control_32bit_prod +Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -953,12 +1089,12 @@ Checking test 016 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_control_32bit PASS +Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_stretched_prod -Checking test 017 fv3_ccpp_stretched results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_stretched_prod +Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1009,12 +1145,12 @@ Checking test 017 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_ccpp_stretched PASS +Test 019 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_stretched_nest_prod -Checking test 018 fv3_ccpp_stretched_nest results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_stretched_nest_prod +Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1076,54 +1212,54 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 018 fv3_ccpp_stretched_nest PASS +Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_regional_control_prod -Checking test 019 fv3_ccpp_regional_control results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_regional_control_prod +Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 019 fv3_ccpp_regional_control PASS +Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_regional_restart_prod -Checking test 020 fv3_ccpp_regional_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_regional_restart_prod +Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -Test 020 fv3_ccpp_regional_restart PASS +Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_regional_quilt_prod -Checking test 021 fv3_ccpp_regional_quilt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_regional_quilt_prod +Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 021 fv3_ccpp_regional_quilt PASS +Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_control_debug_prod -Checking test 023 fv3_ccpp_control_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_control_debug_prod +Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1148,12 +1284,12 @@ Checking test 023 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 023 fv3_ccpp_control_debug PASS +Test 025 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_stretched_nest_debug_prod -Checking test 024 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_stretched_nest_debug_prod +Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -1168,12 +1304,12 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 024 fv3_ccpp_stretched_nest_debug PASS +Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfdlmp_prod +Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1216,12 +1352,12 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 025 fv3_ccpp_gfdlmp PASS +Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1264,12 +1400,12 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 026 fv3_ccpp_gfdlmprad_gwd PASS +Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1312,12 +1448,12 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmprad_noahmp PASS +Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_csawmg_prod +Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1360,12 +1496,12 @@ Checking test 028 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 028 fv3_ccpp_csawmg PASS +Test 030 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_satmedmf_prod +Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1408,12 +1544,12 @@ Checking test 029 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 029 fv3_ccpp_satmedmf PASS +Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_satmedmfq_prod +Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1456,12 +1592,60 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_satmedmfq PASS +Test 032 fv3_ccpp_satmedmfq PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfdlmp_32bit_prod +Checking test 033 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1472,6 +1656,10 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1504,12 +1692,12 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmp_32bit PASS +Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_cpt_prod -Checking test 032 fv3_ccpp_cpt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_cpt_prod +Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1558,12 +1746,12 @@ Checking test 032 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_cpt PASS +Test 035 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_gsd_prod -Checking test 033 fv3_ccpp_gsd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gsd_prod +Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1650,12 +1838,12 @@ Checking test 033 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_gsd PASS +Test 036 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_thompson_prod -Checking test 034 fv3_ccpp_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_thompson_prod +Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1718,12 +1906,12 @@ Checking test 034 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_thompson PASS +Test 037 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_thompson_no_aero_prod -Checking test 035 fv3_ccpp_thompson_no_aero results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_thompson_no_aero_prod +Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1786,22 +1974,42 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_thompson_no_aero PASS +Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_gocart_clm_prod -Checking test 036 fv3_ccpp_gocart_clm results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfs_v15p2_prod +Checking test 039 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1834,12 +2042,12 @@ Checking test 036 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gocart_clm PASS +Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfs_v16beta_prod +Checking test 040 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1858,11 +2066,489 @@ Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 040 fv3_ccpp_gfs_v16beta PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 041 fv3_ccpp_gfs_v16beta_restart PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 042 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfsv16_csawmg_prod +Checking test 045 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 045 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gocart_clm_prod +Checking test 047 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 047 fv3_ccpp_gocart_clm PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK Comparing dynf000.tile6.nc .........OK Comparing dynf024.tile1.nc .........OK Comparing dynf024.tile2.nc .........OK @@ -1902,12 +2588,12 @@ Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfs_v16beta_flake PASS +Test 048 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1970,12 +2656,12 @@ Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -1988,12 +2674,284 @@ Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 051 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 052 fv3_ccpp_gfs_v16beta_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_gsd_debug_prod -Checking test 040 fv3_ccpp_gsd_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gsd_debug_prod +Checking test 055 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2056,12 +3014,12 @@ Checking test 040 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_gsd_debug PASS +Test 055 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2124,12 +3082,12 @@ Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_gsd_diag3d_debug PASS +Test 056 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_thompson_debug_prod -Checking test 042 fv3_ccpp_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_thompson_debug_prod +Checking test 057 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2192,12 +3150,12 @@ Checking test 042 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson_debug PASS +Test 057 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2260,12 +3218,12 @@ Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero_debug PASS +Test 058 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2328,12 +3286,12 @@ Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta_debug PASS +Test 059 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2396,12 +3354,12 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210105/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_268215/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2414,9 +3372,9 @@ Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 6 03:14:49 GMT 2021 -Elapsed time: 02h:58m:26s. Have a nice day! +Wed Jan 6 23:41:16 GMT 2021 +Elapsed time: 01h:37m:29s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 82e2740810..5374c2bca9 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Tue Jan 5 18:53:18 CST 2021 +Wed Jan 6 15:41:05 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,8 +70,8 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -138,8 +138,8 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -274,8 +274,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -342,8 +342,8 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -438,8 +438,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -630,8 +630,8 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,8 +698,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,9 +766,77 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_iau_prod -Checking test 014 fv3_ccpp_iau results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -831,12 +899,60 @@ Checking test 014 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_iau PASS +Test 015 fv3_ccpp_iau PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfdlmprad_prod -Checking test 015 fv3_ccpp_gfdlmprad results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmprad_prod +Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -880,12 +996,12 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -Test 015 fv3_ccpp_gfdlmprad PASS +Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -929,12 +1045,12 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -Test 016 fv3_ccpp_gfdlmprad_atmwav PASS +Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_nemsio_c768_prod +Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -978,12 +1094,12 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing out_grd.glo_10m .........OK Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK -Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS +Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_multigases_prod -Checking test 018 fv3_ccpp_multigases results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_multigases_prod +Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1052,12 +1168,12 @@ Checking test 018 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 018 fv3_ccpp_multigases PASS +Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_control_32bit_prod -Checking test 019 fv3_ccpp_control_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_control_32bit_prod +Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1120,12 +1236,12 @@ Checking test 019 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_ccpp_control_32bit PASS +Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_stretched_prod -Checking test 020 fv3_ccpp_stretched results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_stretched_prod +Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1176,12 +1292,12 @@ Checking test 020 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 020 fv3_ccpp_stretched PASS +Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_stretched_nest_prod -Checking test 021 fv3_ccpp_stretched_nest results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_stretched_nest_prod +Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1243,54 +1359,54 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 021 fv3_ccpp_stretched_nest PASS +Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_regional_control_prod -Checking test 022 fv3_ccpp_regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_regional_control_prod +Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 022 fv3_ccpp_regional_control PASS +Test 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_regional_restart_prod -Checking test 023 fv3_ccpp_regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_regional_restart_prod +Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -Test 023 fv3_ccpp_regional_restart PASS +Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_regional_quilt_prod -Checking test 024 fv3_ccpp_regional_quilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_regional_quilt_prod +Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 024 fv3_ccpp_regional_quilt PASS +Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_control_debug_prod -Checking test 026 fv3_ccpp_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_control_debug_prod +Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1315,12 +1431,12 @@ Checking test 026 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 026 fv3_ccpp_control_debug PASS +Test 028 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_stretched_nest_debug_prod -Checking test 027 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_stretched_nest_debug_prod +Checking test 029 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -1335,12 +1451,12 @@ Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 027 fv3_ccpp_stretched_nest_debug PASS +Test 029 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfdlmp_prod -Checking test 028 fv3_ccpp_gfdlmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmp_prod +Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1383,12 +1499,12 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmp PASS +Test 030 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1431,12 +1547,12 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_gwd PASS +Test 031 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1479,12 +1595,60 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmprad_noahmp PASS +Test 032 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_csawmg_prod +Checking test 033 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 033 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_csawmg_prod -Checking test 031 fv3_ccpp_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_satmedmf_prod +Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1527,12 +1691,12 @@ Checking test 031 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_csawmg PASS +Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_satmedmf_prod -Checking test 032 fv3_ccpp_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_satmedmfq_prod +Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1575,12 +1739,12 @@ Checking test 032 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmf PASS +Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmp_32bit_prod +Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1623,12 +1787,12 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmp_32bit PASS +Test 036 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1675,12 +1839,12 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_cpt_prod +Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1729,12 +1893,12 @@ Checking test 035 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_cpt PASS +Test 038 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gsd_prod +Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1821,12 +1985,148 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_gsd PASS +Test 039 fv3_ccpp_gsd PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_rap_prod +Checking test 040 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 040 fv3_ccpp_rap PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_hrrr_prod +Checking test 041 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 041 fv3_ccpp_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_thompson_prod +Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1889,12 +2189,12 @@ Checking test 037 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_thompson PASS +Test 042 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_thompson_no_aero_prod -Checking test 038 fv3_ccpp_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_thompson_no_aero_prod +Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1957,12 +2257,12 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_thompson_no_aero PASS +Test 043 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_rrfs_v1beta_prod -Checking test 039 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_rrfs_v1beta_prod +Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2025,12 +2325,12 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_rrfs_v1beta PASS +Test 044 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfs_v15p2_prod -Checking test 040 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v15p2_prod +Checking test 045 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2093,12 +2393,12 @@ Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfs_v15p2 PASS +Test 045 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfs_v16beta_prod -Checking test 041 fv3_ccpp_gfs_v16beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_prod +Checking test 046 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2173,12 +2473,12 @@ Checking test 041 fv3_ccpp_gfs_v16beta results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gfs_v16beta PASS +Test 046 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2223,12 +2523,12 @@ Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v16beta_restart PASS +Test 047 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2291,12 +2591,12 @@ Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16beta_stochy PASS +Test 048 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2359,12 +2659,12 @@ Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2427,12 +2727,12 @@ Checking test 045 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfsv16_csawmg_prod -Checking test 046 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfsv16_csawmg_prod +Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2475,12 +2775,12 @@ Checking test 046 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfsv16_csawmg PASS +Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2523,12 +2823,12 @@ Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfsv16_csawmgt PASS +Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gocart_clm_prod -Checking test 048 fv3_ccpp_gocart_clm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gocart_clm_prod +Checking test 053 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2571,12 +2871,12 @@ Checking test 048 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gocart_clm PASS +Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 049 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2639,12 +2939,12 @@ Checking test 049 fv3_ccpp_gfs_v16beta_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v16beta_flake PASS +Test 054 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2707,12 +3007,12 @@ Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2725,12 +3025,12 @@ Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2793,12 +3093,12 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v15p2_debug PASS +Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 053 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2861,12 +3161,12 @@ Checking test 053 fv3_ccpp_gfs_v16beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfs_v16beta_debug PASS +Test 058 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2929,12 +3229,12 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2997,12 +3297,12 @@ Checking test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gsd_debug_prod -Checking test 056 fv3_ccpp_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gsd_debug_prod +Checking test 061 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3065,12 +3365,12 @@ Checking test 056 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_ccpp_gsd_debug PASS +Test 061 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3133,12 +3433,12 @@ Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_gsd_diag3d_debug PASS +Test 062 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_thompson_debug_prod -Checking test 058 fv3_ccpp_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_thompson_debug_prod +Checking test 063 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3201,12 +3501,12 @@ Checking test 058 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_thompson_debug PASS +Test 063 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3269,12 +3569,12 @@ Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_thompson_no_aero_debug PASS +Test 064 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3337,12 +3637,12 @@ Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_rrfs_v1beta_debug PASS +Test 065 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3405,12 +3705,12 @@ Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3423,12 +3723,12 @@ Checking test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_control_prod -Checking test 063 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_control_prod +Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3476,12 +3776,12 @@ Checking test 063 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 063 cpld_control PASS +Test 068 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_restart_prod -Checking test 064 cpld_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restart_prod +Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3529,12 +3829,12 @@ Checking test 064 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 064 cpld_restart PASS +Test 069 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_controlfrac_prod -Checking test 065 cpld_controlfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_controlfrac_prod +Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3582,12 +3882,12 @@ Checking test 065 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 065 cpld_controlfrac PASS +Test 070 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_restartfrac_prod -Checking test 066 cpld_restartfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restartfrac_prod +Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3635,12 +3935,12 @@ Checking test 066 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 066 cpld_restartfrac PASS +Test 071 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_2threads_prod -Checking test 067 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_2threads_prod +Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3688,12 +3988,12 @@ Checking test 067 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 067 cpld_2threads PASS +Test 072 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_decomp_prod -Checking test 068 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_decomp_prod +Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3741,12 +4041,12 @@ Checking test 068 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 068 cpld_decomp PASS +Test 073 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_satmedmf_prod -Checking test 069 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_satmedmf_prod +Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3794,12 +4094,12 @@ Checking test 069 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_satmedmf PASS +Test 074 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_ca_prod -Checking test 070 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_ca_prod +Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3847,12 +4147,12 @@ Checking test 070 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_ca PASS +Test 075 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_control_c192_prod -Checking test 071 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_control_c192_prod +Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3900,12 +4200,12 @@ Checking test 071 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 071 cpld_control_c192 PASS +Test 076 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_restart_c192_prod -Checking test 072 cpld_restart_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restart_c192_prod +Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3953,12 +4253,12 @@ Checking test 072 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 072 cpld_restart_c192 PASS +Test 077 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_controlfrac_c192_prod -Checking test 073 cpld_controlfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_controlfrac_c192_prod +Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4006,12 +4306,12 @@ Checking test 073 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 073 cpld_controlfrac_c192 PASS +Test 078 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_restartfrac_c192_prod -Checking test 074 cpld_restartfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restartfrac_c192_prod +Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4059,12 +4359,12 @@ Checking test 074 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 074 cpld_restartfrac_c192 PASS +Test 079 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_control_c384_prod -Checking test 075 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_control_c384_prod +Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4115,12 +4415,12 @@ Checking test 075 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_control_c384 PASS +Test 080 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_restart_c384_prod -Checking test 076 cpld_restart_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restart_c384_prod +Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4171,12 +4471,12 @@ Checking test 076 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_restart_c384 PASS +Test 081 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_controlfrac_c384_prod -Checking test 077 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_controlfrac_c384_prod +Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4227,12 +4527,12 @@ Checking test 077 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 077 cpld_controlfrac_c384 PASS +Test 082 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_restartfrac_c384_prod -Checking test 078 cpld_restartfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restartfrac_c384_prod +Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4283,12 +4583,12 @@ Checking test 078 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 078 cpld_restartfrac_c384 PASS +Test 083 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_bmark_prod -Checking test 079 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_bmark_prod +Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4339,12 +4639,12 @@ Checking test 079 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 079 cpld_bmark PASS +Test 084 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_restart_bmark_prod -Checking test 080 cpld_restart_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restart_bmark_prod +Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4395,12 +4695,12 @@ Checking test 080 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 080 cpld_restart_bmark PASS +Test 085 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_bmarkfrac_prod -Checking test 081 cpld_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_bmarkfrac_prod +Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4451,12 +4751,12 @@ Checking test 081 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 081 cpld_bmarkfrac PASS +Test 086 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_restart_bmarkfrac_prod -Checking test 082 cpld_restart_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restart_bmarkfrac_prod +Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4507,12 +4807,12 @@ Checking test 082 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 082 cpld_restart_bmarkfrac PASS +Test 087 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_bmarkfrac_v16_prod -Checking test 083 cpld_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_bmarkfrac_v16_prod +Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4563,12 +4863,12 @@ Checking test 083 cpld_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 083 cpld_bmarkfrac_v16 PASS +Test 088 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_restart_bmarkfrac_v16_prod -Checking test 084 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restart_bmarkfrac_v16_prod +Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4619,12 +4919,12 @@ Checking test 084 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 084 cpld_restart_bmarkfrac_v16 PASS +Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_bmark_wave_prod -Checking test 085 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_bmark_wave_prod +Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4678,12 +4978,12 @@ Checking test 085 cpld_bmark_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmark_wave PASS +Test 090 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_bmarkfrac_wave_prod -Checking test 086 cpld_bmarkfrac_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_bmarkfrac_wave_prod +Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4737,12 +5037,12 @@ Checking test 086 cpld_bmarkfrac_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_bmarkfrac_wave PASS +Test 091 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_bmarkfrac_wave_v16_prod -Checking test 087 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_bmarkfrac_wave_v16_prod +Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4796,12 +5096,12 @@ Checking test 087 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 087 cpld_bmarkfrac_wave_v16 PASS +Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_debug_prod -Checking test 088 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_debug_prod +Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4849,12 +5149,12 @@ Checking test 088 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 088 cpld_debug PASS +Test 093 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/cpld_debugfrac_prod -Checking test 089 cpld_debugfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_debugfrac_prod +Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4902,87 +5202,87 @@ Checking test 089 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 089 cpld_debugfrac PASS +Test 094 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/datm_control_cfsr -Checking test 090 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/datm_control_cfsr +Checking test 095 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 090 datm_control_cfsr PASS +Test 095 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/datm_restart_cfsr -Checking test 091 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/datm_restart_cfsr +Checking test 096 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 091 datm_restart_cfsr PASS +Test 096 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/datm_control_gefs -Checking test 092 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/datm_control_gefs +Checking test 097 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 092 datm_control_gefs PASS +Test 097 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/datm_bulk_cfsr -Checking test 093 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/datm_bulk_cfsr +Checking test 098 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 093 datm_bulk_cfsr PASS +Test 098 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/datm_bulk_gefs -Checking test 094 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/datm_bulk_gefs +Checking test 099 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 094 datm_bulk_gefs PASS +Test 099 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/datm_mx025_cfsr -Checking test 095 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/datm_mx025_cfsr +Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 095 datm_mx025_cfsr PASS +Test 100 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/datm_mx025_gefs -Checking test 096 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/datm_mx025_gefs +Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_mx025_gefs PASS +Test 101 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_71636/datm_debug_cfsr -Checking test 097 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/datm_debug_cfsr +Checking test 102 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 097 datm_debug_cfsr PASS +Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 5 20:02:13 CST 2021 -Elapsed time: 01h:08m:56s. Have a nice day! +Wed Jan 6 17:01:22 CST 2021 +Elapsed time: 01h:20m:17s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 0441c81170..12d4a55510 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Tue Jan 5 21:06:41 UTC 2021 +Wed Jan 6 18:17:45 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,8 +70,8 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -138,8 +138,8 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -274,8 +274,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -342,8 +342,8 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -438,8 +438,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -630,8 +630,8 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,9 +698,145 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_ca_prod +Checking test 013 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 013 fv3_ccpp_ca PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -763,12 +899,12 @@ Checking test 013 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_iau PASS +Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_lheatstrg_prod -Checking test 014 fv3_ccpp_lheatstrg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -811,12 +947,12 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lheatstrg PASS +Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_multigases_prod -Checking test 015 fv3_ccpp_multigases results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_multigases_prod +Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -885,12 +1021,12 @@ Checking test 015 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 015 fv3_ccpp_multigases PASS +Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_control_32bit_prod -Checking test 016 fv3_ccpp_control_32bit results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_control_32bit_prod +Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -953,12 +1089,12 @@ Checking test 016 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_control_32bit PASS +Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_stretched_prod -Checking test 017 fv3_ccpp_stretched results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_stretched_prod +Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1009,12 +1145,12 @@ Checking test 017 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_ccpp_stretched PASS +Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_stretched_nest_prod -Checking test 018 fv3_ccpp_stretched_nest results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_stretched_nest_prod +Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1076,54 +1212,54 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 018 fv3_ccpp_stretched_nest PASS +Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_regional_control_prod -Checking test 019 fv3_ccpp_regional_control results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_regional_control_prod +Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 019 fv3_ccpp_regional_control PASS +Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_regional_restart_prod -Checking test 020 fv3_ccpp_regional_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_regional_restart_prod +Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -Test 020 fv3_ccpp_regional_restart PASS +Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_regional_quilt_prod -Checking test 021 fv3_ccpp_regional_quilt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_regional_quilt_prod +Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 021 fv3_ccpp_regional_quilt PASS +Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_control_debug_prod -Checking test 023 fv3_ccpp_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_control_debug_prod +Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1148,12 +1284,12 @@ Checking test 023 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 023 fv3_ccpp_control_debug PASS +Test 025 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_stretched_nest_debug_prod -Checking test 024 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_stretched_nest_debug_prod +Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -1168,12 +1304,12 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 024 fv3_ccpp_stretched_nest_debug PASS +Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfdlmp_prod +Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1216,12 +1352,12 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 025 fv3_ccpp_gfdlmp PASS +Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1264,12 +1400,12 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 026 fv3_ccpp_gfdlmprad_gwd PASS +Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1312,12 +1448,12 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmprad_noahmp PASS +Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_csawmg_prod +Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1360,12 +1496,12 @@ Checking test 028 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 028 fv3_ccpp_csawmg PASS +Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_satmedmf_prod +Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1408,12 +1544,12 @@ Checking test 029 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 029 fv3_ccpp_satmedmf PASS +Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_satmedmfq_prod +Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1456,12 +1592,12 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_satmedmfq PASS +Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfdlmp_32bit_prod +Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1504,12 +1640,12 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmp_32bit PASS +Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1556,12 +1692,12 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_cpt_prod +Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1610,12 +1746,12 @@ Checking test 033 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_cpt PASS +Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gsd_prod +Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1702,12 +1838,148 @@ Checking test 034 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_gsd PASS +Test 036 fv3_ccpp_gsd PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_rap_prod +Checking test 037 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 037 fv3_ccpp_rap PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_hrrr_prod +Checking test 038 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 038 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_thompson_prod -Checking test 035 fv3_ccpp_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_thompson_prod +Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +2042,12 @@ Checking test 035 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_thompson PASS +Test 039 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_thompson_no_aero_prod -Checking test 036 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_thompson_no_aero_prod +Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1838,12 +2110,12 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_thompson_no_aero PASS +Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_rrfs_v1beta_prod -Checking test 037 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_rrfs_v1beta_prod +Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1906,12 +2178,80 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_rrfs_v1beta PASS +Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfs_v16beta_prod -Checking test 038 fv3_ccpp_gfs_v16beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v15p2_prod +Checking test 042 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 042 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_prod +Checking test 043 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1986,12 +2326,12 @@ Checking test 038 fv3_ccpp_gfs_v16beta results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_gfs_v16beta PASS +Test 043 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2036,12 +2376,12 @@ Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 039 fv3_ccpp_gfs_v16beta_restart PASS +Test 044 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2104,12 +2444,80 @@ Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfs_v16beta_stochy PASS +Test 045 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2172,12 +2580,12 @@ Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfsv16_csawmg_prod -Checking test 042 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfsv16_csawmg_prod +Checking test 048 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2220,12 +2628,12 @@ Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfsv16_csawmg PASS +Test 048 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2268,12 +2676,12 @@ Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfsv16_csawmgt PASS +Test 049 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gocart_clm_prod -Checking test 044 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gocart_clm_prod +Checking test 050 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2316,12 +2724,12 @@ Checking test 044 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gocart_clm PASS +Test 050 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 051 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2384,12 +2792,12 @@ Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16beta_flake PASS +Test 051 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2452,12 +2860,12 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2470,12 +2878,148 @@ Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 054 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 054 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 055 fv3_ccpp_gfs_v16beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 055 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2538,12 +3082,12 @@ Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16beta_debug PASS +Test 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2606,12 +3150,12 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gsd_debug_prod -Checking test 050 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gsd_debug_prod +Checking test 058 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2674,12 +3218,12 @@ Checking test 050 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gsd_debug PASS +Test 058 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2742,12 +3286,12 @@ Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gsd_diag3d_debug PASS +Test 059 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_thompson_debug_prod -Checking test 052 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_thompson_debug_prod +Checking test 060 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2810,12 +3354,12 @@ Checking test 052 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_thompson_debug PASS +Test 060 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2878,12 +3422,12 @@ Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_thompson_no_aero_debug PASS +Test 061 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2946,12 +3490,12 @@ Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 054 fv3_ccpp_rrfs_v1beta_debug PASS +Test 062 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3014,12 +3558,12 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39937/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3032,9 +3576,9 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 5 21:52:04 UTC 2021 -Elapsed time: 00h:45m:23s. Have a nice day! +Wed Jan 6 18:59:33 UTC 2021 +Elapsed time: 00h:41m:49s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index c2e18a6909..4836d83c92 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Wed Jan 6 00:46:52 UTC 2021 +Wed Jan 6 19:39:15 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,8 +70,8 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -138,8 +138,8 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -274,8 +274,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -342,8 +342,8 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -438,8 +438,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -447,7 +447,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -630,8 +630,8 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,9 +698,145 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_ca_prod +Checking test 013 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 013 fv3_ccpp_ca PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -763,12 +899,12 @@ Checking test 013 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_iau PASS +Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_lheatstrg_prod -Checking test 014 fv3_ccpp_lheatstrg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -811,12 +947,12 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lheatstrg PASS +Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfdlmprad_prod -Checking test 015 fv3_ccpp_gfdlmprad results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmprad_prod +Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -860,12 +996,12 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -Test 015 fv3_ccpp_gfdlmprad PASS +Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -909,12 +1045,12 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -Test 016 fv3_ccpp_gfdlmprad_atmwav PASS +Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_multigases_prod +Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -983,12 +1119,12 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 017 fv3_ccpp_multigases PASS +Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_control_32bit_prod +Checking test 020 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1051,12 +1187,12 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_control_32bit PASS +Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_stretched_prod +Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1107,12 +1243,12 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_ccpp_stretched PASS +Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_stretched_nest_prod +Checking test 022 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1174,54 +1310,54 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 020 fv3_ccpp_stretched_nest PASS +Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_regional_control_prod +Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 021 fv3_ccpp_regional_control PASS +Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_regional_restart_prod +Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -Test 022 fv3_ccpp_regional_restart PASS +Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_regional_quilt_prod +Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 023 fv3_ccpp_regional_quilt PASS +Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_control_debug_prod -Checking test 025 fv3_ccpp_control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_control_debug_prod +Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1246,12 +1382,12 @@ Checking test 025 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 025 fv3_ccpp_control_debug PASS +Test 027 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_stretched_nest_debug_prod -Checking test 026 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_stretched_nest_debug_prod +Checking test 028 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -1266,12 +1402,12 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 026 fv3_ccpp_stretched_nest_debug PASS +Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmp_prod +Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1314,12 +1450,12 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmp PASS +Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1362,12 +1498,12 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmprad_gwd PASS +Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1410,12 +1546,12 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_noahmp PASS +Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_csawmg_prod +Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1458,12 +1594,12 @@ Checking test 030 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_csawmg PASS +Test 032 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_satmedmf_prod +Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1506,12 +1642,12 @@ Checking test 031 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_satmedmf PASS +Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_satmedmfq_prod +Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1554,12 +1690,12 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmfq PASS +Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmp_32bit_prod +Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1602,12 +1738,12 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmp_32bit PASS +Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1654,12 +1790,12 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_cpt_prod +Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1708,12 +1844,12 @@ Checking test 035 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_cpt PASS +Test 037 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gsd_prod +Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1800,12 +1936,12 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_gsd PASS +Test 038 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_rap_prod +Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1868,12 +2004,12 @@ Checking test 037 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_thompson PASS +Test 039 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_thompson_no_aero_prod -Checking test 038 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_hrrr_prod +Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1936,12 +2072,12 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_thompson_no_aero PASS +Test 040 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_rrfs_v1beta_prod -Checking test 039 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_thompson_prod +Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2004,12 +2140,12 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_rrfs_v1beta PASS +Test 041 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfs_v16beta_prod -Checking test 040 fv3_ccpp_gfs_v16beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_thompson_no_aero_prod +Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2028,12 +2164,6 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK Comparing dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -2046,12 +2176,6 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -2072,36 +2196,54 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfs_v16beta PASS + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_rrfs_v1beta_prod +Checking test 043 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -2122,24 +2264,24 @@ Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gfs_v16beta_restart PASS + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v15p2_prod +Checking test 044 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2152,24 +2294,24 @@ Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK Comparing dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK Comparing dynf000.tile4.nc .........OK Comparing dynf000.tile5.nc .........OK Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -2202,12 +2344,12 @@ Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v16beta_stochy PASS +Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 043 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_prod +Checking test 045 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2226,6 +2368,12 @@ Checking test 043 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK Comparing dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -2238,6 +2386,12 @@ Checking test 043 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -2270,24 +2424,278 @@ Checking test 043 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 045 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfsv16_csawmg_prod -Checking test 044 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 046 fv3_ccpp_gfs_v16beta_restart results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfs_v16beta_restart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 047 fv3_ccpp_gfs_v16beta_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 047 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfsv16_csawmg_prod +Checking test 050 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK Comparing RESTART/fv_core.res.tile2.nc .........OK Comparing RESTART/fv_core.res.tile3.nc .........OK @@ -2318,12 +2726,12 @@ Checking test 044 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfsv16_csawmg PASS +Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2366,12 +2774,12 @@ Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfsv16_csawmgt PASS +Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gocart_clm_prod -Checking test 046 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gocart_clm_prod +Checking test 052 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2414,12 +2822,12 @@ Checking test 046 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gocart_clm PASS +Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 047 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 053 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2482,12 +2890,12 @@ Checking test 047 fv3_ccpp_gfs_v16beta_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16beta_flake PASS +Test 053 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2550,12 +2958,12 @@ Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2568,12 +2976,148 @@ Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 056 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 057 fv3_ccpp_gfs_v16beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 057 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2636,12 +3180,12 @@ Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16beta_debug PASS +Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2704,12 +3248,12 @@ Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gsd_debug_prod -Checking test 052 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gsd_debug_prod +Checking test 060 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2772,12 +3316,12 @@ Checking test 052 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gsd_debug PASS +Test 060 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2840,12 +3384,12 @@ Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gsd_diag3d_debug PASS +Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_thompson_debug_prod -Checking test 054 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_thompson_debug_prod +Checking test 062 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2908,12 +3452,12 @@ Checking test 054 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 054 fv3_ccpp_thompson_debug PASS +Test 062 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2976,12 +3520,12 @@ Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_ccpp_thompson_no_aero_debug PASS +Test 063 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3044,12 +3588,12 @@ Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_ccpp_rrfs_v1beta_debug PASS +Test 064 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3112,12 +3656,12 @@ Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3130,12 +3674,12 @@ Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_control_prod -Checking test 059 cpld_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_control_prod +Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3183,12 +3727,12 @@ Checking test 059 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 059 cpld_control PASS +Test 067 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_restart_prod -Checking test 060 cpld_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_restart_prod +Checking test 068 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3236,12 +3780,12 @@ Checking test 060 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 060 cpld_restart PASS +Test 068 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_controlfrac_prod -Checking test 061 cpld_controlfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_controlfrac_prod +Checking test 069 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3289,12 +3833,12 @@ Checking test 061 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 061 cpld_controlfrac PASS +Test 069 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_restartfrac_prod -Checking test 062 cpld_restartfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_restartfrac_prod +Checking test 070 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3342,12 +3886,12 @@ Checking test 062 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 062 cpld_restartfrac PASS +Test 070 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_2threads_prod -Checking test 063 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_2threads_prod +Checking test 071 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3395,12 +3939,12 @@ Checking test 063 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 063 cpld_2threads PASS +Test 071 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_decomp_prod -Checking test 064 cpld_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_decomp_prod +Checking test 072 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3448,12 +3992,12 @@ Checking test 064 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 064 cpld_decomp PASS +Test 072 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_satmedmf_prod -Checking test 065 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_satmedmf_prod +Checking test 073 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3501,12 +4045,12 @@ Checking test 065 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 065 cpld_satmedmf PASS +Test 073 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_ca_prod -Checking test 066 cpld_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_ca_prod +Checking test 074 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3554,12 +4098,12 @@ Checking test 066 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 066 cpld_ca PASS +Test 074 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_control_c192_prod -Checking test 067 cpld_control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_control_c192_prod +Checking test 075 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3607,12 +4151,12 @@ Checking test 067 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 067 cpld_control_c192 PASS +Test 075 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_restart_c192_prod -Checking test 068 cpld_restart_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_restart_c192_prod +Checking test 076 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3660,12 +4204,12 @@ Checking test 068 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 068 cpld_restart_c192 PASS +Test 076 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_controlfrac_c192_prod -Checking test 069 cpld_controlfrac_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_controlfrac_c192_prod +Checking test 077 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3713,12 +4257,12 @@ Checking test 069 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 069 cpld_controlfrac_c192 PASS +Test 077 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_restartfrac_c192_prod -Checking test 070 cpld_restartfrac_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_restartfrac_c192_prod +Checking test 078 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3766,12 +4310,12 @@ Checking test 070 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 070 cpld_restartfrac_c192 PASS +Test 078 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_control_c384_prod -Checking test 071 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_control_c384_prod +Checking test 079 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3822,12 +4366,12 @@ Checking test 071 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_control_c384 PASS +Test 079 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_restart_c384_prod -Checking test 072 cpld_restart_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_restart_c384_prod +Checking test 080 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3878,12 +4422,12 @@ Checking test 072 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_restart_c384 PASS +Test 080 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_controlfrac_c384_prod -Checking test 073 cpld_controlfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_controlfrac_c384_prod +Checking test 081 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3934,12 +4478,12 @@ Checking test 073 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_controlfrac_c384 PASS +Test 081 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_restartfrac_c384_prod -Checking test 074 cpld_restartfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_restartfrac_c384_prod +Checking test 082 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3990,12 +4534,12 @@ Checking test 074 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_restartfrac_c384 PASS +Test 082 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_bmark_prod -Checking test 075 cpld_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmark_prod +Checking test 083 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4046,12 +4590,12 @@ Checking test 075 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 075 cpld_bmark PASS +Test 083 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_restart_bmark_prod -Checking test 076 cpld_restart_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_restart_bmark_prod +Checking test 084 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4102,12 +4646,12 @@ Checking test 076 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 076 cpld_restart_bmark PASS +Test 084 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_bmarkfrac_prod -Checking test 077 cpld_bmarkfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmarkfrac_prod +Checking test 085 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4158,12 +4702,12 @@ Checking test 077 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 077 cpld_bmarkfrac PASS +Test 085 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_restart_bmarkfrac_prod -Checking test 078 cpld_restart_bmarkfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_restart_bmarkfrac_prod +Checking test 086 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4214,12 +4758,12 @@ Checking test 078 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 078 cpld_restart_bmarkfrac PASS +Test 086 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_bmarkfrac_v16_prod -Checking test 079 cpld_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmarkfrac_v16_prod +Checking test 087 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4270,12 +4814,12 @@ Checking test 079 cpld_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 079 cpld_bmarkfrac_v16 PASS +Test 087 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_restart_bmarkfrac_v16_prod -Checking test 080 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_restart_bmarkfrac_v16_prod +Checking test 088 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4326,12 +4870,12 @@ Checking test 080 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 080 cpld_restart_bmarkfrac_v16 PASS +Test 088 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_bmark_wave_prod -Checking test 081 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmark_wave_prod +Checking test 089 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4385,12 +4929,12 @@ Checking test 081 cpld_bmark_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 081 cpld_bmark_wave PASS +Test 089 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_bmarkfrac_wave_prod -Checking test 082 cpld_bmarkfrac_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmarkfrac_wave_prod +Checking test 090 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4444,12 +4988,12 @@ Checking test 082 cpld_bmarkfrac_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 082 cpld_bmarkfrac_wave PASS +Test 090 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_bmarkfrac_wave_v16_prod -Checking test 083 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmarkfrac_wave_v16_prod +Checking test 091 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4503,12 +5047,12 @@ Checking test 083 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 083 cpld_bmarkfrac_wave_v16 PASS +Test 091 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_debug_prod -Checking test 084 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_debug_prod +Checking test 092 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4556,12 +5100,12 @@ Checking test 084 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 084 cpld_debug PASS +Test 092 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/cpld_debugfrac_prod -Checking test 085 cpld_debugfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/cpld_debugfrac_prod +Checking test 093 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4609,87 +5153,87 @@ Checking test 085 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 085 cpld_debugfrac PASS +Test 093 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/datm_control_cfsr -Checking test 086 datm_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/datm_control_cfsr +Checking test 094 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 086 datm_control_cfsr PASS +Test 094 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/datm_restart_cfsr -Checking test 087 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/datm_restart_cfsr +Checking test 095 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 087 datm_restart_cfsr PASS +Test 095 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/datm_control_gefs -Checking test 088 datm_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/datm_control_gefs +Checking test 096 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 088 datm_control_gefs PASS +Test 096 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/datm_bulk_cfsr -Checking test 089 datm_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/datm_bulk_cfsr +Checking test 097 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 089 datm_bulk_cfsr PASS +Test 097 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/datm_bulk_gefs -Checking test 090 datm_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/datm_bulk_gefs +Checking test 098 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 090 datm_bulk_gefs PASS +Test 098 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/datm_mx025_cfsr -Checking test 091 datm_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/datm_mx025_cfsr +Checking test 099 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 091 datm_mx025_cfsr PASS +Test 099 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/datm_mx025_gefs -Checking test 092 datm_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/datm_mx025_gefs +Checking test 100 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 092 datm_mx025_gefs PASS +Test 100 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210105/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_51261/datm_debug_cfsr -Checking test 093 datm_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/datm_debug_cfsr +Checking test 101 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 093 datm_debug_cfsr PASS +Test 101 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 6 04:25:55 UTC 2021 -Elapsed time: 03h:39m:05s. Have a nice day! +Wed Jan 6 21:48:35 UTC 2021 +Elapsed time: 02h:09m:23s. Have a nice day! From 1c8f0c43850c14f60981ba143dc347edeae7a24e Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 6 Jan 2021 17:04:06 -0700 Subject: [PATCH 15/27] Revert change to .gitmodules and update submodule pointer for fv3atm --- .gitmodules | 6 ++---- FV3 | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index ade89a7dde..6e63f4576f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,7 @@ [submodule "FV3"] path = FV3 - #url = https://github.com/NOAA-EMC/fv3atm - #branch = develop - url = https://github.com/climbfuji/fv3atm - branch = simd_update_20201231 + url = https://github.com/NOAA-EMC/fv3atm + branch = develop [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS diff --git a/FV3 b/FV3 index c7b8afd51d..45618a9b7e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c7b8afd51dbfca946384e9c331c3617d0a32f953 +Subproject commit 45618a9b7e7f6829f37af55499431a5dcab6c215 From 6e3eadc7e5ea42b801cd359cd2758ea0b19fe832 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 6 Jan 2021 20:27:52 -0700 Subject: [PATCH 16/27] Update .gitmodules and submodule pointers for NEMS and fv3atm for code review and testing --- .gitmodules | 8 +++++--- FV3 | 2 +- NEMS | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index b9ec21b3f9..ef3dcd3dbf 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,11 +3,13 @@ #url = https://github.com/NOAA-EMC/fv3atm #branch = develop url = https://github.com/climbfuji/fv3atm - branch = timestep_init_final + branch = remove_ipd_step3_and_5 [submodule "NEMS"] path = NEMS - url = https://github.com/NOAA-EMC/NEMS - branch = develop + #url = https://github.com/NOAA-EMC/NEMS + #branch = develop + url = https://github.com/climbfuji/NEMS + branch = remove_ipd_step3_and_5 [submodule "FMS"] path = FMS url = https://github.com/NOAA-GFDL/FMS diff --git a/FV3 b/FV3 index a86790ea3e..325644c427 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a86790ea3eb8b2ba969fb369faed36d7d0cf1956 +Subproject commit 325644c427eb44a90fb7dcd991d0314081873106 diff --git a/NEMS b/NEMS index b800b340f8..f0797091ee 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit b800b340f8c7ba7852f13077b9957370ee60874a +Subproject commit f0797091eec5f155fbc0644856f895b7bc3a6c5c From dbfd9695cf5ada39d3bb9e40c670b293e516b778 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 6 Jan 2021 20:28:09 -0700 Subject: [PATCH 17/27] CCPP is default in cmake build --- CMakeLists.txt | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2de3ef22d7..d3a8d1276e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,6 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) set(32BIT OFF CACHE BOOL "Enable 32BIT (single precision arithmetic in dycore)") set(AVX2 ON CACHE BOOL "Enable AVX2 instruction set") set(SIMDMULTIARCH OFF CACHE BOOL "Enable multi-target SIMD instruction sets") -set(CCPP ON CACHE BOOL "Enable CCPP") set(DEBUG OFF CACHE BOOL "Enable DEBUG mode") set(DEBUG_LINKMPI ON CACHE BOOL "Enable linkmpi option when DEBUG mode is on") set(INLINE_POST OFF CACHE BOOL "Enable inline post") @@ -58,7 +57,6 @@ message("") message("32BIT ............ ${32BIT}") message("AVX2 ............. ${AVX2}") message("SIMDMULTIARCH ... ${SIMDMULTIARCH}") -message("CCPP ............. ${CCPP}") message("DEBUG ............ ${DEBUG}") message("DEBUG_LINKMPI .... ${DEBUG_LINKMPI}") message("INLINE_POST ...... ${INLINE_POST}") @@ -112,13 +110,12 @@ endif() # See https://github.com/NOAA-EMC/NCEPLIBS-nemsio/pull/22 target_link_libraries(nemsio::nemsio INTERFACE w3emc::w3emc_d bacio::bacio_4) -if(CCPP) - find_package(Python 3 QUIET COMPONENTS Interpreter) - if (NOT Python_Interpreter_FOUND) - find_package(Python 2.7 REQUIRED COMPONENTS Interpreter) - endif() - message("Found Python: ${Python_EXECUTABLE}") +# Configure Python +find_package(Python 3 QUIET COMPONENTS Interpreter) +if (NOT Python_Interpreter_FOUND) + find_package(Python 2.7 REQUIRED COMPONENTS Interpreter) endif() +message("Found Python: ${Python_EXECUTABLE}") ############################################################################### ### Checks From 91b5d14562e8ef0eeb86ad443f2b62aed5abcaf6 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 6 Jan 2021 20:28:26 -0700 Subject: [PATCH 18/27] Add debug modulefiles for linux.gnu and macosx.gnu --- modulefiles/linux.gnu/fv3_debug | 50 ++++++++++++++++++++++++++++++++ modulefiles/macosx.gnu/fv3_debug | 44 ++++++++++++++++++++++++++++ 2 files changed, 94 insertions(+) create mode 100755 modulefiles/linux.gnu/fv3_debug create mode 100755 modulefiles/macosx.gnu/fv3_debug diff --git a/modulefiles/linux.gnu/fv3_debug b/modulefiles/linux.gnu/fv3_debug new file mode 100755 index 0000000000..c93e096e2c --- /dev/null +++ b/modulefiles/linux.gnu/fv3_debug @@ -0,0 +1,50 @@ +#!/bin/bash + +#%Module###################################################################### +## +## NEMS FV3 Prerequisites: Linux (tested: Ubuntu) with gcc/gfortran compilers + +echo "Setting environment variables for NEMSfv3gfs on Linux with gcc/gfortran" + +## +## load programming environment: compiler, flags, paths +## +export CC=${CC:-mpicc} +export CXX=${CXX:-mpicxx} +export F77=${F77:-mpif77} +export F90=${F90:-mpif90} +export FC=${FC:-mpif90} + +## +## set up variables for ../cmake/configure_linux.gnu.cmake +## +export CMAKE_Platform=linux.gnu +export CMAKE_C_COMPILER=${CC} +export CMAKE_CXX_COMPILER=${CXX} +export CMAKE_Fortran_COMPILER=${FC} + +## +## use own NetCDF library +## +export NETCDF=${NETCDF:-/home/builder/opt} + +## +## use SIONlib library if installed and environment variable is set +## +SIONLIB=${SIONLIB:-} +if [ ! "x$SIONLIB" == "x" ]; then + echo "Use SIONlib installation in ${SIONLIB}" + export SIONLIB_INC="-I${SIONLIB}/include -I${SIONLIB}/include/mod_64" + export SIONLIB_LIB="-L${SIONLIB}/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none" +fi + +## +## use pre-compiled EMSF library for above compiler / MPI combination +## +export ESMFMKFILE=${ESMFMKFILE:-/home/builder/opt/lib/esmf.mk} + +## +## NCEP libraries (need to download and build manually, see doc/README_{UBUNTU,CENTOS,...}.txt and https://github.com/NCAR/NCEPlibs) +## +export NCEPLIBS_DIR=${NCEPLIBS_DIR:-/home/builder/opt} +export CMAKE_PREFIX_PATH=${NCEPLIBS_DIR} diff --git a/modulefiles/macosx.gnu/fv3_debug b/modulefiles/macosx.gnu/fv3_debug new file mode 100755 index 0000000000..da298a7cbd --- /dev/null +++ b/modulefiles/macosx.gnu/fv3_debug @@ -0,0 +1,44 @@ +#!/bin/bash + +#%Module###################################################################### +## +## NEMS FV3 Prerequisites: MACOSX with clang/gfortran compilers + +echo "Setting environment variables for NEMSfv3gfs on MACOSX with gcc/gfortran or clang/gfortran" + +## +## load programming environment: compiler, flags, paths +## +export CC=${MPICC:-mpicc} +export CXX=${MPICXX:-mpicxx} +export F77=${MPIF77:-mpif77} +export F90=${MPIF90:-mpif90} +export FC=${MPIFORT:-mpifort} +export CPP=${CPP:-"${F90} -E -x f95-cpp-input"} +export MPICC=${MPICC:-mpicc} +export MPIF90=${MPIF90:-mpif90} + +## +## load cmake +## +export CMAKE_C_COMPILER=${CC} +export CMAKE_CXX_COMPILER=${CXX} +export CMAKE_Fortran_COMPILER=${FC} +export CMAKE_Platform=macosx.gnu + +## +## use SIONlib library if installed and environment variable is set +## +SIONLIB=${SIONLIB:-} +if [ ! "x$SIONLIB" == "x" ]; then + echo "Use SIONlib installation in ${SIONLIB}" + export SIONLIB_INC="-I${SIONLIB}/include -I${SIONLIB}/include/mod_64" + export SIONLIB_LIB="-L${SIONLIB}/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none" +fi + +## +## Intel MKL library +## +export MKL_DIR=${MKL_DIR:-/opt/intel/compilers_and_libraries_2019.4.233/mac/mkl} +export MKL_INC="-m64 -I${MKL_DIR}/include" +export MKL_LIB="-L${MKL_DIR}/lib -Wl,-rpath,${MKL_DIR}/lib -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl" From 17a592abf3397448a4bdb485c2ea5ffc3f0d1a72 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 8 Jan 2021 09:18:09 -0700 Subject: [PATCH 19/27] Update submodule pointer for fv3atm --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 325644c427..1918b65719 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 325644c427eb44a90fb7dcd991d0314081873106 +Subproject commit 1918b657191224a291f718414b7bfac10ad1f3d1 From 90bcf598e1ba31e2ec52e7edb17e0bec5fb0cfd4 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 12 Jan 2021 09:51:23 -0700 Subject: [PATCH 20/27] Change logic in CMakeLists.txt and tests/compile.sh so that 32BIT=ON automatically sets DYN32=ON; skip-ci --- CMakeLists.txt | 4 ++++ tests/compile.sh | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d3a8d1276e..6b6001f89e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -146,9 +146,13 @@ endif() target_compile_definitions(fms PUBLIC "${_fms_defs_public}") if(32BIT) + set(DYN32 ON CACHE BOOL "Enable support for 32bit fast physics in CCPP") list(APPEND _fms_defs_private OVERLOAD_R4 OVERLOAD_R8) +else() + set(DYN32 OFF CACHE BOOL "Disable support for 32bit fast physics in CCPP") endif() + target_compile_definitions(fms PRIVATE "${_fms_defs_private}") target_include_directories(fms PUBLIC $ diff --git a/tests/compile.sh b/tests/compile.sh index 839d7031ee..fb903929f8 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -122,11 +122,11 @@ else fi fi -if [[ "${MAKE_OPT}" == *"32BIT=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DDYN32=ON" -else - CMAKE_FLAGS="${CMAKE_FLAGS} -DDYN32=OFF" -fi +#if [[ "${MAKE_OPT}" == *"32BIT=Y"* ]]; then +# CMAKE_FLAGS="${CMAKE_FLAGS} -DDYN32=ON" +#else +# CMAKE_FLAGS="${CMAKE_FLAGS} -DDYN32=OFF" +#fi # Check if suites argument is provided or not set +ex From b8a61868d95819fd830b368d1cb8e8331d44fe8d Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 12 Jan 2021 14:08:03 -0700 Subject: [PATCH 21/27] Move logic to set DYN32 - depending on 32BIT setting - to fv3atm --- CMakeLists.txt | 3 --- FV3 | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b6001f89e..7c778d43b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -146,11 +146,8 @@ endif() target_compile_definitions(fms PUBLIC "${_fms_defs_public}") if(32BIT) - set(DYN32 ON CACHE BOOL "Enable support for 32bit fast physics in CCPP") list(APPEND _fms_defs_private OVERLOAD_R4 OVERLOAD_R8) -else() - set(DYN32 OFF CACHE BOOL "Disable support for 32bit fast physics in CCPP") endif() target_compile_definitions(fms PRIVATE "${_fms_defs_private}") diff --git a/FV3 b/FV3 index d63fdcdea9..7111b4bf53 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d63fdcdea9751efc77c79ddc1198c8f0f56da508 +Subproject commit 7111b4bf53643009191ee1e0625decc788aba21b From 7245fa5735367b2fc477e5b2eb3b5a7c81eeedbf Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 12 Jan 2021 14:09:34 -0700 Subject: [PATCH 22/27] Address reviewer comments --- modulefiles/linux.gnu/fv3 | 2 +- modulefiles/linux.gnu/fv3_debug | 2 +- modulefiles/macosx.gnu/fv3 | 2 +- modulefiles/macosx.gnu/fv3_debug | 2 +- tests/compile.sh | 6 ------ 5 files changed, 4 insertions(+), 10 deletions(-) diff --git a/modulefiles/linux.gnu/fv3 b/modulefiles/linux.gnu/fv3 index c93e096e2c..40b281000b 100755 --- a/modulefiles/linux.gnu/fv3 +++ b/modulefiles/linux.gnu/fv3 @@ -2,7 +2,7 @@ #%Module###################################################################### ## -## NEMS FV3 Prerequisites: Linux (tested: Ubuntu) with gcc/gfortran compilers +## UFS prerequisites: Linux (tested: Ubuntu) with gcc/gfortran compilers echo "Setting environment variables for NEMSfv3gfs on Linux with gcc/gfortran" diff --git a/modulefiles/linux.gnu/fv3_debug b/modulefiles/linux.gnu/fv3_debug index c93e096e2c..40b281000b 100755 --- a/modulefiles/linux.gnu/fv3_debug +++ b/modulefiles/linux.gnu/fv3_debug @@ -2,7 +2,7 @@ #%Module###################################################################### ## -## NEMS FV3 Prerequisites: Linux (tested: Ubuntu) with gcc/gfortran compilers +## UFS prerequisites: Linux (tested: Ubuntu) with gcc/gfortran compilers echo "Setting environment variables for NEMSfv3gfs on Linux with gcc/gfortran" diff --git a/modulefiles/macosx.gnu/fv3 b/modulefiles/macosx.gnu/fv3 index da298a7cbd..f99e07ad70 100755 --- a/modulefiles/macosx.gnu/fv3 +++ b/modulefiles/macosx.gnu/fv3 @@ -2,7 +2,7 @@ #%Module###################################################################### ## -## NEMS FV3 Prerequisites: MACOSX with clang/gfortran compilers +## UFS prerequisites: MACOSX with clang/gfortran compilers echo "Setting environment variables for NEMSfv3gfs on MACOSX with gcc/gfortran or clang/gfortran" diff --git a/modulefiles/macosx.gnu/fv3_debug b/modulefiles/macosx.gnu/fv3_debug index da298a7cbd..f99e07ad70 100755 --- a/modulefiles/macosx.gnu/fv3_debug +++ b/modulefiles/macosx.gnu/fv3_debug @@ -2,7 +2,7 @@ #%Module###################################################################### ## -## NEMS FV3 Prerequisites: MACOSX with clang/gfortran compilers +## UFS prerequisites: MACOSX with clang/gfortran compilers echo "Setting environment variables for NEMSfv3gfs on MACOSX with gcc/gfortran or clang/gfortran" diff --git a/tests/compile.sh b/tests/compile.sh index fb903929f8..48c0104bae 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -122,12 +122,6 @@ else fi fi -#if [[ "${MAKE_OPT}" == *"32BIT=Y"* ]]; then -# CMAKE_FLAGS="${CMAKE_FLAGS} -DDYN32=ON" -#else -# CMAKE_FLAGS="${CMAKE_FLAGS} -DDYN32=OFF" -#fi - # Check if suites argument is provided or not set +ex TEST=$( echo $MAKE_OPT | grep -e "SUITES=" ) From 0601f7743d5d91017289120a57067684a733e45e Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 13 Jan 2021 08:42:26 -0700 Subject: [PATCH 23/27] Update submodule pointer for fv3atm --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 7111b4bf53..418be6997c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 7111b4bf53643009191ee1e0625decc788aba21b +Subproject commit 418be6997c8803c12371a54315d9b226ac296dc3 From 576c4984dd955dc41d7e641c9ef6f2787b5460ee Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 13 Jan 2021 12:54:52 -0700 Subject: [PATCH 24/27] Regression test logs for all systems except wcoss_dell_p3; skip-ci --- tests/RegressionTests_cheyenne.gnu.log | 50 +++--- tests/RegressionTests_cheyenne.intel.log | 208 +++++++++++----------- tests/RegressionTests_gaea.intel.log | 136 +++++++------- tests/RegressionTests_hera.gnu.log | 50 +++--- tests/RegressionTests_hera.intel.log | 212 +++++++++++----------- tests/RegressionTests_jet.intel.log | 130 +++++++------- tests/RegressionTests_orion.intel.log | 216 +++++++++++------------ tests/RegressionTests_wcoss_cray.log | 136 +++++++------- 8 files changed, 569 insertions(+), 569 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index a39a5d4845..05953af978 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Mon Jan 11 11:12:01 MST 2021 +Wed Jan 13 10:33:50 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -51,7 +51,7 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,7 +119,7 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_prod Checking test 003 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_restart_prod Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_flake_prod Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -453,7 +453,7 @@ Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -903,7 +903,7 @@ Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_control_debug_prod Checking test 015 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 015 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v15p2_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1001,7 +1001,7 @@ Test 016 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1069,7 +1069,7 @@ Test 017 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1137,7 +1137,7 @@ Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1205,7 +1205,7 @@ Test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,7 +1279,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1347,7 +1347,7 @@ Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1365,5 +1365,5 @@ Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 11 11:29:36 MST 2021 -Elapsed time: 00h:17m:35s. Have a nice day! +Wed Jan 13 10:57:35 MST 2021 +Elapsed time: 00h:23m:45s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index eacbee2122..7144cf2f3e 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Mon Jan 11 11:11:47 MST 2021 +Wed Jan 13 10:08:19 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -448,9 +448,9 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -631,7 +631,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -699,7 +699,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_lndp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,7 +951,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1025,7 +1025,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1093,7 +1093,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1149,7 +1149,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,7 +1216,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1227,7 +1227,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1236,7 +1236,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1247,18 +1247,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1308,7 +1308,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1356,7 +1356,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1404,7 +1404,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1452,7 +1452,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1500,7 +1500,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1548,7 +1548,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,7 +1596,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1644,7 +1644,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1696,7 +1696,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,7 +1750,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_rap_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_hrrr_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2046,7 +2046,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_thompson_no_aero_prod Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,7 +2114,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_rrfs_v1beta_prod Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2182,7 +2182,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v15p2_prod Checking test 042 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2250,7 +2250,7 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v16beta_prod Checking test 043 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2330,7 +2330,7 @@ Test 043 fv3_ccpp_gfs_v16beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v16beta_restart_prod Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2380,7 +2380,7 @@ Test 044 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2448,7 +2448,7 @@ Test 045 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2516,7 +2516,7 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2584,7 +2584,7 @@ Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2646,7 +2646,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gocart_clm_prod Checking test 049 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2694,7 +2694,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v16beta_flake_prod Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2762,7 +2762,7 @@ Test 050 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2830,7 +2830,7 @@ Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2848,7 +2848,7 @@ Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v15p2_debug_prod Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2916,7 +2916,7 @@ Test 053 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v16beta_debug_prod Checking test 054 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2984,7 +2984,7 @@ Test 054 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3052,7 +3052,7 @@ Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3120,7 +3120,7 @@ Test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gsd_debug_prod Checking test 057 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3188,7 +3188,7 @@ Test 057 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_gsd_diag3d_debug_prod Checking test 058 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3256,7 +3256,7 @@ Test 058 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_thompson_debug_prod Checking test 059 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3324,7 +3324,7 @@ Test 059 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_thompson_no_aero_debug_prod Checking test 060 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3392,7 +3392,7 @@ Test 060 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 061 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3460,7 +3460,7 @@ Test 061 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3528,7 +3528,7 @@ Test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3546,7 +3546,7 @@ Test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_control_prod Checking test 064 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3599,7 +3599,7 @@ Test 064 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_restart_prod Checking test 065 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3652,7 +3652,7 @@ Test 065 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_controlfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_controlfrac_prod Checking test 066 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3705,7 +3705,7 @@ Test 066 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restartfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_restartfrac_prod Checking test 067 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3758,7 +3758,7 @@ Test 067 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3811,7 +3811,7 @@ Test 068 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3864,7 +3864,7 @@ Test 069 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3917,7 +3917,7 @@ Test 070 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3970,7 +3970,7 @@ Test 071 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_control_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_control_c192_prod Checking test 072 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4023,7 +4023,7 @@ Test 072 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_restart_c192_prod Checking test 073 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4076,7 +4076,7 @@ Test 073 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_controlfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_controlfrac_c192_prod Checking test 074 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4129,7 +4129,7 @@ Test 074 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restartfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_restartfrac_c192_prod Checking test 075 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4182,7 +4182,7 @@ Test 075 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_control_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4238,7 +4238,7 @@ Test 076 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_restart_c384_prod Checking test 077 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4294,7 +4294,7 @@ Test 077 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_controlfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_controlfrac_c384_prod Checking test 078 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4350,7 +4350,7 @@ Test 078 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restartfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_restartfrac_c384_prod Checking test 079 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4406,7 +4406,7 @@ Test 079 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_bmark_prod Checking test 080 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4462,7 +4462,7 @@ Test 080 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_restart_bmark_prod Checking test 081 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4518,7 +4518,7 @@ Test 081 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_bmarkfrac_prod Checking test 082 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4574,7 +4574,7 @@ Test 082 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_restart_bmarkfrac_prod Checking test 083 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4630,7 +4630,7 @@ Test 083 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_bmarkfrac_v16_prod Checking test 084 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4686,7 +4686,7 @@ Test 084 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_restart_bmarkfrac_v16_prod Checking test 085 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4742,7 +4742,7 @@ Test 085 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmark_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_bmark_wave_prod Checking test 086 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4801,7 +4801,7 @@ Test 086 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmarkfrac_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_bmarkfrac_wave_prod Checking test 087 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4860,7 +4860,7 @@ Test 087 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmarkfrac_wave_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_bmarkfrac_wave_v16_prod Checking test 088 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4919,7 +4919,7 @@ Test 088 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_debug_prod Checking test 089 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4972,7 +4972,7 @@ Test 089 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_debugfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/cpld_debugfrac_prod Checking test 090 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5025,7 +5025,7 @@ Test 090 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/datm_control_cfsr Checking test 091 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5034,7 +5034,7 @@ Test 091 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/datm_restart_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/datm_restart_cfsr Checking test 092 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5043,7 +5043,7 @@ Test 092 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/datm_control_gefs Checking test 093 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5052,7 +5052,7 @@ Test 093 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/datm_bulk_cfsr Checking test 094 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5061,7 +5061,7 @@ Test 094 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/datm_bulk_gefs Checking test 095 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5070,7 +5070,7 @@ Test 095 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/datm_mx025_cfsr Checking test 096 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5082,7 +5082,7 @@ Test 096 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/datm_mx025_gefs Checking test 097 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5094,7 +5094,7 @@ Test 097 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/datm_debug_cfsr Checking test 098 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5103,5 +5103,5 @@ Test 098 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 11 12:28:13 MST 2021 -Elapsed time: 01h:16m:27s. Have a nice day! +Wed Jan 13 11:34:05 MST 2021 +Elapsed time: 01h:25m:47s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 68365835fc..f6888aac65 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Mon Jan 11 13:11:35 EST 2021 +Wed Jan 13 12:05:25 EST 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -631,7 +631,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -699,7 +699,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_ca_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_lndp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_iau_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,7 +951,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1025,7 +1025,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1093,7 +1093,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1149,7 +1149,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,7 +1216,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1227,7 +1227,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1236,7 +1236,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1247,7 +1247,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1258,7 +1258,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1308,7 +1308,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1356,7 +1356,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1404,7 +1404,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1452,7 +1452,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1500,7 +1500,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1548,7 +1548,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,7 +1596,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1644,7 +1644,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1696,7 +1696,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,7 +1750,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_rap_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_hrrr_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2046,7 +2046,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_thompson_no_aero_prod Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,7 +2114,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_rrfs_v1beta_prod Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2182,7 +2182,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v15p2_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v15p2_prod Checking test 042 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2250,7 +2250,7 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v16beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v16beta_prod Checking test 043 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2330,7 +2330,7 @@ Test 043 fv3_ccpp_gfs_v16beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v16beta_restart_prod Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2380,7 +2380,7 @@ Test 044 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2448,7 +2448,7 @@ Test 045 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2516,7 +2516,7 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2584,7 +2584,7 @@ Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2646,7 +2646,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfsv16_csawmg_prod Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2694,7 +2694,7 @@ Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfsv16_csawmgt_prod Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2742,7 +2742,7 @@ Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gocart_clm_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gocart_clm_prod Checking test 051 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2790,7 +2790,7 @@ Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v16beta_flake_prod Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2858,7 +2858,7 @@ Test 052 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2926,7 +2926,7 @@ Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2944,7 +2944,7 @@ Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v15p2_debug_prod Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3012,7 +3012,7 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v16beta_debug_prod Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3080,7 +3080,7 @@ Test 056 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3148,7 +3148,7 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3216,7 +3216,7 @@ Test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gsd_debug_prod Checking test 059 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3284,7 +3284,7 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_gsd_diag3d_debug_prod Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3352,7 +3352,7 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_thompson_debug_prod Checking test 061 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3420,7 +3420,7 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_thompson_no_aero_debug_prod Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3488,7 +3488,7 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3556,7 +3556,7 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3624,7 +3624,7 @@ Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3642,5 +3642,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 11 14:04:47 EST 2021 -Elapsed time: 00h:53m:13s. Have a nice day! +Wed Jan 13 12:55:22 EST 2021 +Elapsed time: 00h:49m:59s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 323b7ed950..69f997913e 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Mon Jan 11 17:12:39 UTC 2021 +Wed Jan 13 16:30:35 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -51,7 +51,7 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,7 +119,7 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_prod Checking test 003 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_restart_prod Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_flake_prod Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -453,7 +453,7 @@ Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -903,7 +903,7 @@ Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_control_debug_prod Checking test 015 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 015 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v15p2_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1001,7 +1001,7 @@ Test 016 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1069,7 +1069,7 @@ Test 017 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1137,7 +1137,7 @@ Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1205,7 +1205,7 @@ Test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,7 +1279,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1347,7 +1347,7 @@ Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1365,5 +1365,5 @@ Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 11 17:46:38 UTC 2021 -Elapsed time: 00h:34m:00s. Have a nice day! +Wed Jan 13 17:12:46 UTC 2021 +Elapsed time: 00h:42m:12s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 1d5fddd2a4..b35f7f2006 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Mon Jan 11 17:02:49 UTC 2021 +Wed Jan 13 16:29:58 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -631,7 +631,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -699,7 +699,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,7 +951,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1000,7 +1000,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1049,7 +1049,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1098,7 +1098,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1172,7 +1172,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1240,7 +1240,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1296,7 +1296,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,7 +1363,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1374,7 +1374,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1383,7 +1383,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1394,7 +1394,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1405,7 +1405,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1435,7 +1435,7 @@ Test 028 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_stretched_nest_debug_prod Checking test 029 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1455,7 +1455,7 @@ Test 029 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1503,7 +1503,7 @@ Test 030 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmprad_gwd_prod Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,7 +1551,7 @@ Test 031 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1599,7 +1599,7 @@ Test 032 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1647,7 +1647,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1695,7 +1695,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,7 +1743,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmp_32bit_prod Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1791,7 +1791,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1843,7 +1843,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1897,7 +1897,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,7 +1989,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2057,7 +2057,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2125,7 +2125,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2193,7 +2193,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_thompson_no_aero_prod Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,7 +2261,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_rrfs_v1beta_prod Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2329,7 +2329,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v15p2_prod Checking test 045 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2397,7 +2397,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_prod Checking test 046 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2477,7 +2477,7 @@ Test 046 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_restart_prod Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2527,7 +2527,7 @@ Test 047 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2595,7 +2595,7 @@ Test 048 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,7 +2663,7 @@ Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2731,7 +2731,7 @@ Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2793,7 +2793,7 @@ Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfsv16_csawmg_prod Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2841,7 +2841,7 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfsv16_csawmgt_prod Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2889,7 +2889,7 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gocart_clm_prod Checking test 054 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2937,7 +2937,7 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_flake_prod Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3005,7 +3005,7 @@ Test 055 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3073,7 +3073,7 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3091,7 +3091,7 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v15p2_debug_prod Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3159,7 +3159,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_debug_prod Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3227,7 +3227,7 @@ Test 059 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3295,7 +3295,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3363,7 +3363,7 @@ Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gsd_debug_prod Checking test 062 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3431,7 +3431,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gsd_diag3d_debug_prod Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3499,7 +3499,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_thompson_debug_prod Checking test 064 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3567,7 +3567,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_thompson_no_aero_debug_prod Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3635,7 +3635,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3703,7 +3703,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3771,7 +3771,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3789,7 +3789,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3842,7 +3842,7 @@ Test 069 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3895,7 +3895,7 @@ Test 070 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3948,7 +3948,7 @@ Test 071 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4001,7 +4001,7 @@ Test 072 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4054,7 +4054,7 @@ Test 073 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4107,7 +4107,7 @@ Test 074 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4160,7 +4160,7 @@ Test 075 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4213,7 +4213,7 @@ Test 076 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4266,7 +4266,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4319,7 +4319,7 @@ Test 078 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4372,7 +4372,7 @@ Test 079 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4425,7 +4425,7 @@ Test 080 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4481,7 +4481,7 @@ Test 081 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4537,7 +4537,7 @@ Test 082 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4593,7 +4593,7 @@ Test 083 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restartfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4649,7 +4649,7 @@ Test 084 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4705,7 +4705,7 @@ Test 085 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4761,7 +4761,7 @@ Test 086 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4817,7 +4817,7 @@ Test 087 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4873,7 +4873,7 @@ Test 088 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4929,7 +4929,7 @@ Test 089 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4985,7 +4985,7 @@ Test 090 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5044,7 +5044,7 @@ Test 091 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5103,7 +5103,7 @@ Test 092 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5162,7 +5162,7 @@ Test 093 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5215,7 +5215,7 @@ Test 094 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5268,7 +5268,7 @@ Test 095 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_control_cfsr Checking test 096 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5277,7 +5277,7 @@ Test 096 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_restart_cfsr Checking test 097 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5286,7 +5286,7 @@ Test 097 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_control_gefs Checking test 098 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5295,7 +5295,7 @@ Test 098 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_bulk_cfsr Checking test 099 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5304,7 +5304,7 @@ Test 099 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_bulk_gefs Checking test 100 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5313,7 +5313,7 @@ Test 100 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5325,7 +5325,7 @@ Test 101 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5337,7 +5337,7 @@ Test 102 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_debug_cfsr Checking test 103 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5346,5 +5346,5 @@ Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 11 18:22:24 UTC 2021 -Elapsed time: 01h:19m:36s. Have a nice day! +Wed Jan 13 18:30:50 UTC 2021 +Elapsed time: 02h:00m:52s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index d7dfc495c5..3d628ccdb8 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Mon Jan 11 18:11:41 GMT 2021 +Wed Jan 13 16:59:56 GMT 2021 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_decomp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -631,7 +631,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -699,7 +699,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_ca_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_lndp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,7 +951,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1025,7 +1025,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1093,7 +1093,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1149,7 +1149,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,7 +1216,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1227,7 +1227,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1236,7 +1236,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1247,7 +1247,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1258,7 +1258,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1308,7 +1308,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1356,7 +1356,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1404,7 +1404,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1452,7 +1452,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1500,7 +1500,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1548,7 +1548,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,7 +1596,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1644,7 +1644,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1696,7 +1696,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,7 +1750,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_thompson_no_aero_prod Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v15p2_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v15p2_prod Checking test 039 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2046,7 +2046,7 @@ Test 039 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v16beta_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v16beta_prod Checking test 040 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2126,7 +2126,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v16beta_restart_prod Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2176,7 +2176,7 @@ Test 041 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2244,7 +2244,7 @@ Test 042 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2380,7 +2380,7 @@ Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2442,7 +2442,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfsv16_csawmg_prod Checking test 046 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2490,7 +2490,7 @@ Test 046 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfsv16_csawmgt_prod Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2538,7 +2538,7 @@ Test 047 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gocart_clm_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gocart_clm_prod Checking test 048 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2586,7 +2586,7 @@ Test 048 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v16beta_flake_prod Checking test 049 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2654,7 +2654,7 @@ Test 049 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2722,7 +2722,7 @@ Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2740,7 +2740,7 @@ Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v15p2_debug_prod Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2808,7 +2808,7 @@ Test 052 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v16beta_debug_prod Checking test 053 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2876,7 +2876,7 @@ Test 053 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2944,7 +2944,7 @@ Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3012,7 +3012,7 @@ Test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gsd_debug_prod Checking test 056 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3080,7 +3080,7 @@ Test 056 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_gsd_diag3d_debug_prod Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3148,7 +3148,7 @@ Test 057 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_thompson_debug_prod Checking test 058 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3216,7 +3216,7 @@ Test 058 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_thompson_no_aero_debug_prod Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3284,7 +3284,7 @@ Test 059 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3352,7 +3352,7 @@ Test 060 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3420,7 +3420,7 @@ Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3438,5 +3438,5 @@ Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 11 19:50:10 GMT 2021 -Elapsed time: 01h:38m:31s. Have a nice day! +Wed Jan 13 19:30:14 GMT 2021 +Elapsed time: 02h:30m:19s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index bf99704fce..7d31312a0f 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Mon Jan 11 11:03:32 CST 2021 +Wed Jan 13 10:59:03 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -447,7 +447,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -631,7 +631,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -699,7 +699,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_lndp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_lheatstrg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,7 +951,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1000,7 +1000,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1049,7 +1049,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1098,7 +1098,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1172,7 +1172,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1240,7 +1240,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1296,7 +1296,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,7 +1363,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1374,7 +1374,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1383,7 +1383,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1394,18 +1394,18 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1435,7 +1435,7 @@ Test 028 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_stretched_nest_debug_prod Checking test 029 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1455,7 +1455,7 @@ Test 029 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1503,7 +1503,7 @@ Test 030 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmprad_gwd_prod Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,7 +1551,7 @@ Test 031 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1599,7 +1599,7 @@ Test 032 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1647,7 +1647,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1695,7 +1695,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_satmedmfq_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,7 +1743,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmp_32bit_prod Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1791,7 +1791,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1843,7 +1843,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1897,7 +1897,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,7 +1989,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_rap_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2057,7 +2057,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_hrrr_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2125,7 +2125,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2193,7 +2193,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_thompson_no_aero_prod Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,7 +2261,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_rrfs_v1beta_prod Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2329,7 +2329,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v15p2_prod Checking test 045 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2397,7 +2397,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_prod Checking test 046 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2477,7 +2477,7 @@ Test 046 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_restart_prod Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2527,7 +2527,7 @@ Test 047 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2595,7 +2595,7 @@ Test 048 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,7 +2663,7 @@ Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2731,7 +2731,7 @@ Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2793,7 +2793,7 @@ Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfsv16_csawmg_prod Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2841,7 +2841,7 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfsv16_csawmgt_prod Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2889,7 +2889,7 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gocart_clm_prod Checking test 054 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2937,7 +2937,7 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_flake_prod Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3005,7 +3005,7 @@ Test 055 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3073,7 +3073,7 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3091,7 +3091,7 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v15p2_debug_prod Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3159,7 +3159,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_debug_prod Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3227,7 +3227,7 @@ Test 059 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3295,7 +3295,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3363,7 +3363,7 @@ Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gsd_debug_prod Checking test 062 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3431,7 +3431,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gsd_diag3d_debug_prod Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3499,7 +3499,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_thompson_debug_prod Checking test 064 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3567,7 +3567,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_thompson_no_aero_debug_prod Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3635,7 +3635,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3703,7 +3703,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3771,7 +3771,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3789,7 +3789,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3842,7 +3842,7 @@ Test 069 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3895,7 +3895,7 @@ Test 070 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_controlfrac_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3948,7 +3948,7 @@ Test 071 cpld_controlfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restartfrac_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4001,7 +4001,7 @@ Test 072 cpld_restartfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_2threads_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4054,7 +4054,7 @@ Test 073 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_decomp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4107,7 +4107,7 @@ Test 074 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_satmedmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4160,7 +4160,7 @@ Test 075 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_ca_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4213,7 +4213,7 @@ Test 076 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_control_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4266,7 +4266,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4319,7 +4319,7 @@ Test 078 cpld_restart_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_controlfrac_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4372,7 +4372,7 @@ Test 079 cpld_controlfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restartfrac_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4425,7 +4425,7 @@ Test 080 cpld_restartfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_control_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4481,7 +4481,7 @@ Test 081 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4537,7 +4537,7 @@ Test 082 cpld_restart_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4593,7 +4593,7 @@ Test 083 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restartfrac_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4649,7 +4649,7 @@ Test 084 cpld_restartfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmark_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4705,7 +4705,7 @@ Test 085 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_bmark_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4761,7 +4761,7 @@ Test 086 cpld_restart_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmarkfrac_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4817,7 +4817,7 @@ Test 087 cpld_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_bmarkfrac_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4873,7 +4873,7 @@ Test 088 cpld_restart_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4929,7 +4929,7 @@ Test 089 cpld_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4985,7 +4985,7 @@ Test 090 cpld_restart_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5044,7 +5044,7 @@ Test 091 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmarkfrac_wave_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5103,7 +5103,7 @@ Test 092 cpld_bmarkfrac_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmarkfrac_wave_v16_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5162,7 +5162,7 @@ Test 093 cpld_bmarkfrac_wave_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5215,7 +5215,7 @@ Test 094 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_debugfrac_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5268,7 +5268,7 @@ Test 095 cpld_debugfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_control_cfsr Checking test 096 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5277,7 +5277,7 @@ Test 096 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/datm_restart_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_restart_cfsr Checking test 097 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5286,7 +5286,7 @@ Test 097 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_control_gefs Checking test 098 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5295,7 +5295,7 @@ Test 098 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/datm_bulk_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_bulk_cfsr Checking test 099 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5304,7 +5304,7 @@ Test 099 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/datm_bulk_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_bulk_gefs Checking test 100 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5313,7 +5313,7 @@ Test 100 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5325,7 +5325,7 @@ Test 101 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5337,7 +5337,7 @@ Test 102 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/datm_debug_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_debug_cfsr Checking test 103 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5346,5 +5346,5 @@ Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 11 12:22:56 CST 2021 -Elapsed time: 01h:19m:24s. Have a nice day! +Wed Jan 13 12:26:06 CST 2021 +Elapsed time: 01h:27m:03s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 3f8c61e1c5..7c2cb62ba0 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Mon Jan 11 17:08:55 UTC 2021 +Wed Jan 13 17:15:10 UTC 2021 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -631,7 +631,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -699,7 +699,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_ca_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_lndp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,7 +951,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1025,7 +1025,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1093,7 +1093,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1149,7 +1149,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,7 +1216,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1227,7 +1227,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1236,7 +1236,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1247,7 +1247,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1258,7 +1258,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1308,7 +1308,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1356,7 +1356,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1404,7 +1404,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1452,7 +1452,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1500,7 +1500,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1548,7 +1548,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,7 +1596,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1644,7 +1644,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1696,7 +1696,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,7 +1750,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_rap_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_hrrr_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2046,7 +2046,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_thompson_no_aero_prod Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,7 +2114,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_rrfs_v1beta_prod Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2182,7 +2182,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v15p2_prod Checking test 042 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2250,7 +2250,7 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v16beta_prod Checking test 043 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2330,7 +2330,7 @@ Test 043 fv3_ccpp_gfs_v16beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v16beta_restart_prod Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2380,7 +2380,7 @@ Test 044 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2448,7 +2448,7 @@ Test 045 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2516,7 +2516,7 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2584,7 +2584,7 @@ Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2646,7 +2646,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfsv16_csawmg_prod Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2694,7 +2694,7 @@ Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfsv16_csawmgt_prod Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2742,7 +2742,7 @@ Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gocart_clm_prod Checking test 051 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2790,7 +2790,7 @@ Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v16beta_flake_prod Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2858,7 +2858,7 @@ Test 052 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2926,7 +2926,7 @@ Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2944,7 +2944,7 @@ Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v15p2_debug_prod Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3012,7 +3012,7 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v16beta_debug_prod Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3080,7 +3080,7 @@ Test 056 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3148,7 +3148,7 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3216,7 +3216,7 @@ Test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gsd_debug_prod Checking test 059 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3284,7 +3284,7 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_gsd_diag3d_debug_prod Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3352,7 +3352,7 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_thompson_debug_prod Checking test 061 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3420,7 +3420,7 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_thompson_no_aero_debug_prod Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3488,7 +3488,7 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3556,7 +3556,7 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3624,7 +3624,7 @@ Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3642,5 +3642,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 11 17:56:32 UTC 2021 -Elapsed time: 00h:47m:38s. Have a nice day! +Wed Jan 13 18:00:56 UTC 2021 +Elapsed time: 00h:45m:48s. Have a nice day! From 0ea9e59dd07be6c9886d477139e01a3b6f7325da Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 13 Jan 2021 14:47:19 -0700 Subject: [PATCH 25/27] Remove -DCCPP=ON from tests/compile.sh; update submodule pointer for fv3atm; skip-ci --- FV3 | 2 +- tests/compile.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FV3 b/FV3 index 418be6997c..f84a2201dc 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 418be6997c8803c12371a54315d9b226ac296dc3 +Subproject commit f84a2201dc22313b31d1aa86f42fd504c776becf diff --git a/tests/compile.sh b/tests/compile.sh index 48c0104bae..96b847e7c7 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -109,7 +109,7 @@ mkdir -p $PATHTR/FV3/ccpp/include # Similar for this directory, which apparently never gets populated mkdir -p $PATHTR/FMS/fms2_io/include -CMAKE_FLAGS="${CMAKE_FLAGS} -DCCPP=ON -DMPI=ON" +CMAKE_FLAGS="${CMAKE_FLAGS} -DMPI=ON" if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Debug" From 8461e1fc622a3106da58a1af2ce28d214c5e9774 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 14 Jan 2021 06:46:25 -0700 Subject: [PATCH 26/27] Regression test logs for wcoss_dell_p3, hera.intel (rerun), hera.gnu (rerun); skip-ci --- tests/RegressionTests_hera.gnu.log | 50 +++--- tests/RegressionTests_hera.intel.log | 212 +++++++++++------------ tests/RegressionTests_wcoss_dell_p3.log | 214 ++++++++++++------------ 3 files changed, 238 insertions(+), 238 deletions(-) diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 69f997913e..9849f59f3c 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Jan 13 16:30:35 UTC 2021 +Wed Jan 13 22:35:16 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -51,7 +51,7 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,7 +119,7 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_prod Checking test 003 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_restart_prod Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_flake_prod Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -453,7 +453,7 @@ Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -903,7 +903,7 @@ Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_control_debug_prod Checking test 015 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 015 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v15p2_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1001,7 +1001,7 @@ Test 016 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1069,7 +1069,7 @@ Test 017 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1137,7 +1137,7 @@ Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1205,7 +1205,7 @@ Test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,7 +1279,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1347,7 +1347,7 @@ Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_63530/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1365,5 +1365,5 @@ Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 13 17:12:46 UTC 2021 -Elapsed time: 00h:42m:12s. Have a nice day! +Wed Jan 13 23:59:43 UTC 2021 +Elapsed time: 01h:24m:28s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index b35f7f2006..09bc946e3e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Jan 13 16:29:58 UTC 2021 +Wed Jan 13 22:35:12 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -631,7 +631,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -699,7 +699,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,7 +951,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1000,7 +1000,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1049,7 +1049,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1098,7 +1098,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1172,7 +1172,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1240,7 +1240,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1296,7 +1296,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,7 +1363,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1374,7 +1374,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1383,7 +1383,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1394,7 +1394,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1405,7 +1405,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1435,7 +1435,7 @@ Test 028 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_stretched_nest_debug_prod Checking test 029 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1455,7 +1455,7 @@ Test 029 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1503,7 +1503,7 @@ Test 030 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmprad_gwd_prod Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,7 +1551,7 @@ Test 031 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1599,7 +1599,7 @@ Test 032 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1647,7 +1647,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1695,7 +1695,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,7 +1743,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmp_32bit_prod Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1791,7 +1791,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1843,7 +1843,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1897,7 +1897,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,7 +1989,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2057,7 +2057,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2125,7 +2125,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2193,7 +2193,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_thompson_no_aero_prod Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,7 +2261,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_rrfs_v1beta_prod Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2329,7 +2329,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v15p2_prod Checking test 045 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2397,7 +2397,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16beta_prod Checking test 046 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2477,7 +2477,7 @@ Test 046 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16beta_restart_prod Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2527,7 +2527,7 @@ Test 047 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2595,7 +2595,7 @@ Test 048 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,7 +2663,7 @@ Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2731,7 +2731,7 @@ Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2793,7 +2793,7 @@ Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfsv16_csawmg_prod Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2841,7 +2841,7 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfsv16_csawmgt_prod Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2889,7 +2889,7 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gocart_clm_prod Checking test 054 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2937,7 +2937,7 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16beta_flake_prod Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3005,7 +3005,7 @@ Test 055 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3073,7 +3073,7 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3091,7 +3091,7 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v15p2_debug_prod Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3159,7 +3159,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16beta_debug_prod Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3227,7 +3227,7 @@ Test 059 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3295,7 +3295,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3363,7 +3363,7 @@ Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gsd_debug_prod Checking test 062 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3431,7 +3431,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gsd_diag3d_debug_prod Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3499,7 +3499,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_thompson_debug_prod Checking test 064 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3567,7 +3567,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_thompson_no_aero_debug_prod Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3635,7 +3635,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3703,7 +3703,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3771,7 +3771,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3789,7 +3789,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3842,7 +3842,7 @@ Test 069 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3895,7 +3895,7 @@ Test 070 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3948,7 +3948,7 @@ Test 071 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4001,7 +4001,7 @@ Test 072 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4054,7 +4054,7 @@ Test 073 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4107,7 +4107,7 @@ Test 074 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4160,7 +4160,7 @@ Test 075 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4213,7 +4213,7 @@ Test 076 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4266,7 +4266,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4319,7 +4319,7 @@ Test 078 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4372,7 +4372,7 @@ Test 079 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4425,7 +4425,7 @@ Test 080 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4481,7 +4481,7 @@ Test 081 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4537,7 +4537,7 @@ Test 082 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4593,7 +4593,7 @@ Test 083 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restartfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4649,7 +4649,7 @@ Test 084 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4705,7 +4705,7 @@ Test 085 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4761,7 +4761,7 @@ Test 086 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4817,7 +4817,7 @@ Test 087 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4873,7 +4873,7 @@ Test 088 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4929,7 +4929,7 @@ Test 089 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4985,7 +4985,7 @@ Test 090 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5044,7 +5044,7 @@ Test 091 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5103,7 +5103,7 @@ Test 092 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5162,7 +5162,7 @@ Test 093 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5215,7 +5215,7 @@ Test 094 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5268,7 +5268,7 @@ Test 095 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/datm_control_cfsr Checking test 096 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5277,7 +5277,7 @@ Test 096 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/datm_restart_cfsr Checking test 097 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5286,7 +5286,7 @@ Test 097 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/datm_control_gefs Checking test 098 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5295,7 +5295,7 @@ Test 098 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/datm_bulk_cfsr Checking test 099 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5304,7 +5304,7 @@ Test 099 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/datm_bulk_gefs Checking test 100 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5313,7 +5313,7 @@ Test 100 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5325,7 +5325,7 @@ Test 101 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5337,7 +5337,7 @@ Test 102 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94321/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/datm_debug_cfsr Checking test 103 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5346,5 +5346,5 @@ Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 13 18:30:50 UTC 2021 -Elapsed time: 02h:00m:52s. Have a nice day! +Thu Jan 14 00:38:02 UTC 2021 +Elapsed time: 02h:02m:51s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 5e8cd6f9d5..57f631d387 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Mon Jan 11 21:38:23 UTC 2021 +Wed Jan 13 21:49:40 UTC 2021 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -450,7 +450,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -631,7 +631,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -699,7 +699,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_ca_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_lndp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,7 +951,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1000,7 +1000,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1049,7 +1049,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,7 +1123,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_control_32bit_prod Checking test 020 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1191,7 +1191,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,7 +1247,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_stretched_nest_prod Checking test 022 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1314,7 +1314,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1325,7 +1325,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1334,7 +1334,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1345,18 +1345,18 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1386,7 +1386,7 @@ Test 027 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1406,7 +1406,7 @@ Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1454,7 +1454,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmprad_gwd_prod Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1502,7 +1502,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1550,7 +1550,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1598,7 +1598,7 @@ Test 032 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1646,7 +1646,7 @@ Test 033 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1694,7 +1694,7 @@ Test 034 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmp_32bit_prod Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1742,7 +1742,7 @@ Test 035 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1794,7 +1794,7 @@ Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1848,7 +1848,7 @@ Test 037 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1940,7 +1940,7 @@ Test 038 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_rap_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2008,7 +2008,7 @@ Test 039 fv3_ccpp_rap PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_hrrr_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2076,7 +2076,7 @@ Test 040 fv3_ccpp_hrrr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2144,7 +2144,7 @@ Test 041 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_thompson_no_aero_prod Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2212,7 +2212,7 @@ Test 042 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_rrfs_v1beta_prod Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2280,7 +2280,7 @@ Test 043 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v15p2_prod Checking test 044 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2348,7 +2348,7 @@ Test 044 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_prod Checking test 045 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2428,7 +2428,7 @@ Test 045 fv3_ccpp_gfs_v16beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_restart_prod Checking test 046 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2478,7 +2478,7 @@ Test 046 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 047 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,7 +2546,7 @@ Test 047 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2614,7 +2614,7 @@ Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2682,7 +2682,7 @@ Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2744,7 +2744,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfsv16_csawmg_prod Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2792,7 +2792,7 @@ Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfsv16_csawmgt_prod Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2840,7 +2840,7 @@ Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gocart_clm_prod Checking test 053 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2888,7 +2888,7 @@ Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_flake_prod Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2956,7 +2956,7 @@ Test 054 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3024,7 +3024,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3042,7 +3042,7 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v15p2_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3110,7 +3110,7 @@ Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_debug_prod Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3178,7 +3178,7 @@ Test 058 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3246,7 +3246,7 @@ Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3314,7 +3314,7 @@ Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gsd_debug_prod Checking test 061 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3382,7 +3382,7 @@ Test 061 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gsd_diag3d_debug_prod Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3450,7 +3450,7 @@ Test 062 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_thompson_debug_prod Checking test 063 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3518,7 +3518,7 @@ Test 063 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_thompson_no_aero_debug_prod Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3586,7 +3586,7 @@ Test 064 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3654,7 +3654,7 @@ Test 065 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3722,7 +3722,7 @@ Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3740,7 +3740,7 @@ Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3793,7 +3793,7 @@ Test 068 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3846,7 +3846,7 @@ Test 069 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_controlfrac_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3899,7 +3899,7 @@ Test 070 cpld_controlfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_restartfrac_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3952,7 +3952,7 @@ Test 071 cpld_restartfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4005,7 +4005,7 @@ Test 072 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4058,7 +4058,7 @@ Test 073 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4111,7 +4111,7 @@ Test 074 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4164,7 +4164,7 @@ Test 075 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4217,7 +4217,7 @@ Test 076 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_restart_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4270,7 +4270,7 @@ Test 077 cpld_restart_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_controlfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4323,7 +4323,7 @@ Test 078 cpld_controlfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_restartfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4376,7 +4376,7 @@ Test 079 cpld_restartfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4432,7 +4432,7 @@ Test 080 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_restart_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4488,7 +4488,7 @@ Test 081 cpld_restart_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4544,7 +4544,7 @@ Test 082 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_restartfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4600,7 +4600,7 @@ Test 083 cpld_restartfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4656,7 +4656,7 @@ Test 084 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_restart_bmark_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4712,7 +4712,7 @@ Test 085 cpld_restart_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4768,7 +4768,7 @@ Test 086 cpld_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_restart_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4824,7 +4824,7 @@ Test 087 cpld_restart_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4880,7 +4880,7 @@ Test 088 cpld_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_restart_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4936,7 +4936,7 @@ Test 089 cpld_restart_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4995,7 +4995,7 @@ Test 090 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_bmarkfrac_wave_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5054,7 +5054,7 @@ Test 091 cpld_bmarkfrac_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_bmarkfrac_wave_v16_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5113,7 +5113,7 @@ Test 092 cpld_bmarkfrac_wave_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5166,7 +5166,7 @@ Test 093 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_debugfrac_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5219,7 +5219,7 @@ Test 094 cpld_debugfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/datm_control_cfsr Checking test 095 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5228,7 +5228,7 @@ Test 095 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/datm_restart_cfsr Checking test 096 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5237,7 +5237,7 @@ Test 096 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/datm_control_gefs Checking test 097 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5246,7 +5246,7 @@ Test 097 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/datm_bulk_cfsr Checking test 098 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5255,7 +5255,7 @@ Test 098 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/datm_bulk_gefs Checking test 099 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5264,7 +5264,7 @@ Test 099 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5276,7 +5276,7 @@ Test 100 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5288,7 +5288,7 @@ Test 101 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/datm_debug_cfsr Checking test 102 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5297,5 +5297,5 @@ Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 11 23:32:54 UTC 2021 -Elapsed time: 01h:54m:34s. Have a nice day! +Thu Jan 14 03:13:51 UTC 2021 +Elapsed time: 05h:24m:14s. Have a nice day! From ca4462eee36ab079d6c2c8b4e95b25c453369ff2 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 14 Jan 2021 13:41:35 -0700 Subject: [PATCH 27/27] Revert change to .gitmodules and update submodule pointers for NEMS and fv3atm --- .gitmodules | 6 ++---- FV3 | 2 +- NEMS | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitmodules b/.gitmodules index ef3dcd3dbf..00e1e60e2b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -6,10 +6,8 @@ branch = remove_ipd_step3_and_5 [submodule "NEMS"] path = NEMS - #url = https://github.com/NOAA-EMC/NEMS - #branch = develop - url = https://github.com/climbfuji/NEMS - branch = remove_ipd_step3_and_5 + url = https://github.com/NOAA-EMC/NEMS + branch = develop [submodule "FMS"] path = FMS url = https://github.com/NOAA-GFDL/FMS diff --git a/FV3 b/FV3 index f84a2201dc..e763de061f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit f84a2201dc22313b31d1aa86f42fd504c776becf +Subproject commit e763de061fdd3dfa7221546b5db39fb025e657c1 diff --git a/NEMS b/NEMS index f0797091ee..f7fb973f8d 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit f0797091eec5f155fbc0644856f895b7bc3a6c5c +Subproject commit f7fb973f8d6c9f2fc88c5a2742bfc8ef37c49320